~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to templates/wiki/changeset.html

  • Committer: Holger Rapp
  • Date: 2009-02-25 16:55:36 UTC
  • Revision ID: sirver@kallisto.local-20090225165536-3abfhjx8qsgtzyru
- Added my hacked version of pybb. Remerging new versions is very difficult at this point :(

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
{% load i18n %}
3
3
 
4
4
{% block title %}
5
 
Changes in {{ article_title }} - {{ block.super }}
 
5
    Changes in {{ article_title }}
6
6
{% endblock %}
7
7
 
8
8
{% block content %}
9
 
   <div align="right">
10
 
         <a href="{% url wiki_article article.title %}">{% trans "Back to article" %}</a>
11
 
         |
12
 
         <a href="{% url wiki_article_history article.title %}">{% trans "Editing history" %}</a>
13
 
   </div>
14
9
        <h1> <a href="{% url wiki_article article_title %}"> {{ article_title }} </a> </h1>
15
10
    {% if changeset.old_title %}
16
11
        <h2> {{ changeset.old_title }} </h2>
17
12
    {% endif %}
18
 
    {% if changeset.comment %}
19
 
    <div class="comment">
20
 
    <p>Editor comment:<br />
21
 
    {{changeset.comment}}</p>
22
 
    </div>
23
 
    {%endif %}
24
 
    <h3>Revision differences</h3>
25
 
    <div class="changeset_content">
26
13
    {{ changeset.display_diff|safe }}
27
 
    </div>
 
14
    <br><b>{% trans "Markup:" %}</b>
 
15
    {% if changeset.old_markup %} {{ changeset.old_markup }}
 
16
    {% else %} {% trans "Plain Text." %}
 
17
    {% endif %}
28
18
{% endblock %}