mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
18 lines
359 B
HTML
18 lines
359 B
HTML
{% 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 %}
|