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

<div class="panel panel-default">
  <div class="panel-heading">
    <h3 class="panel-title">
      <span class="fa fa-fw fa-user"></span>{{ maintainer.email }}
    </h3>
  </div>
  <div class="table-responsive">
    <table class="table table-striped">
      <thead>
        <tr>
          <th>Package</th>
        </tr>
      </thead>
      {% for package in packages -%}
      <tr>
        <td class="text-nowrap"><a href="/package/{{ package.category.name }}/{{ package.name }}">{{ package.category.name}}/{{ package.name }}</a></td>
      </tr>
      {%- endfor %}
    </table>
  </div>
</div>
{% endblock %}