Allow empty 'next' link when asking for community auth consent
[pgweb/local.git] / templates / core / admin_pending.html
blob35da83ad95fd5b0aa6ca6b1fc3a8fadb81622083
1 {%extends "admin/base_site.html"%}
3 {%block breadcrumbs%}
4 <div class="breadcrumbs"><a href="/admin/">Home</a> &rsaquo; Pending</div>
5 {%endblock%}
7 {% block bodyclass %}change-list{% endblock %}
8 {% block coltype %}flex{% endblock %}
10 {%block content%}
11 <h1>Pending moderation</h1>
13 <div id="content-main">
14 {%for app in app_list %}
15 <div class="module">
16 <table summary="Pending {{app.name}}" width="100%">
17 <caption><a class="section">Pending {{app.name}}</a></caption>
18 {%for entry in app.entries%}
19 <tr class="row{%cycle '1' '2'%}">
20 <td><a href="{{entry.url}}">{{entry.title}}</a></td>
21 </tr>
22 {%endfor%}
23 </table>
24 </div>
25 {%endfor%}
26 </div>
27 {%endblock%}