aboutsummaryrefslogtreecommitdiff
blob: 782f40733ad7beafb0fb9911726a955050b20630 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "base.html" %}
{% block content %}

<div class="panel panel-default">
  <div class="panel-heading">
    <h3 class="panel-title">
      <span class="fa fa-fw fa-cubes"></span>Known categories
    </h3>
  </div>
  <div class="table-responsive">
    <table class="table table-striped">
      {% for category in categories -%}
      <tr>
        <td class="text-nowrap">{{ category.name }}</td>
        <td>{{ category.description }}</td>
      </tr>
      {%- endfor %}
    </table>
  </div>
</div>

{% endblock %}