]> git.lizzy.rs Git - cheatdb.git/blob - app/templates/todo/topics.html
Add create links to topic table
[cheatdb.git] / app / templates / todo / topics.html
1 {% extends "base.html" %}
2
3 {% block title %}
4 Topics to be Added
5 {% endblock %}
6
7 {% block content %}
8         <h1>Topics to be Added</h1>
9
10         <p>
11                 {{ total - (topics | count) }} / {{ total }} packages have been added.
12                 {{ topics | count }} remaining.
13         </p>
14
15         {% from "macros/topictable.html" import render_topictable %}
16         {{ render_topictable(topics) }}
17 {% endblock %}