~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/wiki/history.html

merged trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
{% trans "Article History of" %} {{ article.title }} - {{ block.super }}
8
8
{% endblock %}
9
9
 
10
 
{% block content %}
 
10
{% block content_header %}
 
11
        <h1>{% trans "Article History of" %} {{ article.title }}</h1>
 
12
{% endblock %}
 
13
 
 
14
{# add the wanted classes to the tabs #}
 
15
{% block class_wiki_edit %}class="hidden"{% endblock %}
 
16
{% block class_wiki_hist %}class="hidden"{% endblock %}
 
17
 
 
18
{% block content_main %}
11
19
{% if changes|length > 1 %}
12
20
<script type="text/javascript">
13
21
        function check() {
55
63
</script>
56
64
{% endif %}
57
65
 
58
 
<div class="posRight small">
59
 
        <a href="{% url 'wiki_article' article.title %}" class="invertedColor">{% trans "Back to article" %}</a>
60
 
        | <a href="{% url 'wiki_article_history_feed_atom' article.title %}"  class="invertedColor">Atom Feed</a>
61
 
</div>
62
 
<h1>{% trans "Article History of" %} {{ article.title }}</h1>
63
 
 
64
66
<div class="blogEntry">
65
67
        <form action="{% url 'wiki_revert_to_revision' article.title %}" method="post" onsubmit="return check(this);">
66
68
                <table class="history_list">
71
73
                                <th colspan="2">{% trans "Compare" %}</th>
72
74
                                {% endif %}
73
75
                                <th>{% trans "Revert" %}</th>
74
 
                                <th>{% trans "At" %}</th>
75
 
                                <th>{% trans "User" %}</th>
 
76
                                <th class="at">{% trans "At" %}</th>
 
77
                                <th class="user">{% trans "User" %}</th>
76
78
                                <th>{% trans "Comment" %}</th>
77
79
                        </tr>
78
80
                </thead>