~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/wiki/recentchanges.html

  • Committer: franku
  • Date: 2018-05-06 08:20:39 UTC
  • mto: This revision was merged to the branch mainline in revision 494.
  • Revision ID: somal@arcor.de-20180506082039-v8n40alffhi2ulct
This is an Attribute error

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
{% load humanize i18n %}
4
4
{% load pagination_tags %}
5
5
{% load custom_date %}
6
 
{% load wlprofile_extras %}
7
6
 
8
7
{% block title %}
9
8
{% trans "Recent Changes" %} - {{ block.super }}
10
9
{% endblock %}
11
10
 
12
 
{% block content_header %}
13
 
        <h1>Wiki: {% trans "Recent Changes" %}</h1>
14
 
{% endblock %}
15
 
 
16
 
{% block content_main %}
 
11
{% block content %}
 
12
<h1>Wiki: {% trans "Recent Changes" %}</h1>
17
13
<div class="blogEntry">
18
14
{% autopaginate changes as object_list %}
19
15
{% paginate using "pagination/pagination_mod.html" %}
46
42
                        <a href="{% url 'wiki_article' change.article.title %}">{{ change.article.title }}</a>
47
43
                </td>
48
44
                <td>{{ change.modified|custom_date:user }}</td>
49
 
                <td>{{ change.editor|user_link }}</td>
 
45
                <td>{{ change.editor }}</td>
50
46
                <td>{{ change.comment }}</td>
51
47
        </tr>
52
48
{% endfor %}