Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/websdk/hatta/templates/wanted.html
blob: dcc2a2b7cda1064dcae27a97aa13ea5e044bc302 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 %}