aboutsummaryrefslogtreecommitdiff
blob: 1aec2c6e78d1cd2ce7e3fb711967ac0089379238 (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>{{ category.name }}
    </h3>
  </div>
  <div class="table-responsive">
    <table class="table table-striped">
      {% for package in packages -%}
      <tr>
        <td class="text-nowrap"><a href="/package/{{package.category.name}}/{{ package.name }}">{{ package.name }}</a></td>
        <td>&nbsp;</td>
      </tr>
      {%- endfor %}
    </table>
  </div>
</div>

{% endblock %}