1
1
{% extends 'wiki/base.html' %}
3
{% load humanize i18n %}
4
3
{% load pagination_tags %}
6
{% load wlprofile_extras %}
9
{% trans "Recent Changes" %} - {{ block.super }}
12
{% block content_header %}
13
<h1>Wiki: {% trans "Recent Changes" %}</h1>
16
{% block content_main %}
17
<div class="blogEntry">
18
{% autopaginate changes as object_list %}
19
{% paginate using "pagination/pagination_mod.html" %}
21
{% for change in object_list %}
22
{% ifchanged change.modified.date %}
23
{% if not forloop.first %}
27
<h3>{{ change.modified|naturalday:_("MONTH_DAY_FORMAT")|title }}</h3>
28
<table class="history_list">
30
<th class="action">{% trans "Action" %}</th>
31
<th class="article">{% trans "Article" %}</th>
32
<th class="at">{% trans "At" %}</th>
33
<th class="user">{% trans "User" %}</th>
34
<th class="comment">{% trans "Comment" %}</th>
37
<tr class="{% cycle 'odd' 'even' %}">
39
{% if change.old_title %}
40
<a href="{% url 'wiki_changeset' change.article.title change.revision %}">Modified</a>
42
<a href="{% url 'wiki_article' change.article.title %}">Added</a>
46
<a href="{% url 'wiki_article' change.article.title %}">{{ change.article.title }}</a>
48
<td>{{ change.modified|custom_date:user }}</td>
49
<td>{{ change.editor|user_link }}</td>
50
<td>{{ change.comment }}</td>
6
<h2>{% trans "Recent Changes" %}</h2>
7
{% autopaginate changes %}
9
{% for change in changes %}
10
{% ifchanged change.modified.date %}
12
<td colspan="5">{{change.modified|date }}</td>
17
{% if change.old_title %}
18
<a href="{% url wiki_changeset change.article.title,change.revision %}"> M </a>
23
<td><a href="{% url wiki_article change.article.title %}">
24
{{ change.article.title }}</a>
26
<td>{{ change.modified|date:"H:i" }}</td>
27
<td>{{ change.editor }}</td>
28
<td>{{ change.comment }}</td>