aboutsummaryrefslogtreecommitdiff
path: root/app/templates/todo/topics.html
blob: f53c4eb80db97afaee5ce677bbb4f5b5a964816d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}

{% block title %}
Topics to be Added
{% endblock %}

{% block content %}
	<h1>Topics to be Added</h1>

	<p>
		{{ total - (topics | count) }} / {{ total }} packages have been added.
		{{ topics | count }} remaining.
	</p>

	{% from "macros/topictable.html" import render_topictable %}
	{{ render_topictable(topics) }}
{% endblock %}