Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/websdk/hatta/templates/changes.html
blob: 04bb4e34e73abc2b446732bbcb8e412a41198c47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "page_special.html" %} 

{% block page_title %}<h1>{{ _("Recent changes") }}</h1>{% endblock %}
{% block title %}{{ _("Recent changes") }} - {{ wiki.site_name }}{% endblock %}

{% block content %}
    <ul class="changes">
    {% for date, date_url, title, author, comment in changes %}
        <li><a href="{{ date_url }}">{{ date_html(date)|safe }}</a>
            <b>{{ page.wiki_link(title)|safe }}</b> . . . .
            <i>{{ page.wiki_link("~%s" % author, author)|safe }}</i>
            <div class="comment">{{ comment }}</div>
        </li>
    {% endfor %}
    </ul>
{% endblock %}