aboutsummaryrefslogtreecommitdiff
blob: 0bec1f04e5c4474464db4c89e5d616b1e5b7d522 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "layout.html" %}
{% block body %}
<h2>Hi, {{ g.user.email.split('@')[0] }}</h2>
<h3>Managed packages</h3>
{% if pkgs %}
<table id="owned_pkgs">
<thead>
  <tr><th>Package</th></tr>
</thead>
<tbody>
{% for pkg in pkgs %}
<tr><td>{{ pkg.key | e }}</td></tr>
{% endfor %}
</tbody>
</table>
{% else %}
You are not listed as maintainer of any packages
{% endif %}
{% endblock %}