24 lines
474 B
HTML
24 lines
474 B
HTML
|
|
{% extends "base.html" %}
|
||
|
|
{% block title %}Rules{% endblock title %}
|
||
|
|
{% block body %}
|
||
|
|
<div>
|
||
|
|
<a href="/rules/new">New</a>
|
||
|
|
</div>
|
||
|
|
<table>
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th>Categoría</th>
|
||
|
|
<th>Regla</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
{% for rule in rules %}
|
||
|
|
<tr>
|
||
|
|
<td>{{rule.category}}</td>
|
||
|
|
<td>{{rule.regex}}</td>
|
||
|
|
</tr>
|
||
|
|
{% endfor %}
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
{% endblock body %}
|