Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/websdk/hatta/templates/changes.html
diff options
context:
space:
mode:
Diffstat (limited to 'websdk/hatta/templates/changes.html')
-rw-r--r--websdk/hatta/templates/changes.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/websdk/hatta/templates/changes.html b/websdk/hatta/templates/changes.html
new file mode 100644
index 0000000..04bb4e3
--- /dev/null
+++ b/websdk/hatta/templates/changes.html
@@ -0,0 +1,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 %}