forked from jogordo/DnD_Archive
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
511 B
20 lines
511 B
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h2>Magic Surge Effects</h2>
|
|
<ul class="headlist special">
|
|
<li><a href="/surges/random">Random</a></li>
|
|
</ul>
|
|
<table>
|
|
{% for (index,surge) in surges %}
|
|
<tr>
|
|
<th class="topalign">
|
|
{{index}}
|
|
</th>
|
|
<td class="monospace">
|
|
{{surge}}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
<a class="topLink" href="#">Scroll to Top</a>
|
|
{% endblock %}
|