Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/websdk/hatta/templates/wanted.html
diff options
context:
space:
mode:
Diffstat (limited to 'websdk/hatta/templates/wanted.html')
-rw-r--r--websdk/hatta/templates/wanted.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/websdk/hatta/templates/wanted.html b/websdk/hatta/templates/wanted.html
new file mode 100644
index 0000000..dcc2a2b
--- /dev/null
+++ b/websdk/hatta/templates/wanted.html
@@ -0,0 +1,17 @@
+{% extends "page_special.html" %}
+
+{% block page_title %}{{ _("Wanted pages") }}{% endblock %}
+{% block title %}{{ _("Wanted pages") }}{% endblock %}
+
+{% block content %}
+ <p>{{ _("List of pages that are linked to, but don't exist yet.") }}</p>
+ <ul class="wanted">
+ {% for refs, page_title in pages %}
+ <li><b>{{ page.wiki_link(page_title)|safe }}</b>
+ <i>(<a href="{{ url(page_title, wiki.backlinks) }}"
+ class="backlinks"
+>{{ ngettext("%(num)d reference", "%(num)d references", refs) }}</a>)</i>
+ </li>
+ {% endfor %}
+ </ul>
+{% endblock %}