~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to templates/pybb/edit_post.html

  • Committer: Holger Rapp
  • Date: 2009-02-26 22:38:49 UTC
  • Revision ID: sirver@kallisto.local-20090226223849-1563ij0uuw0lz0zu
First version of widelands online help

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
{% load pybb_extras %}
3
3
{% load i18n %}
4
4
 
5
 
{% block title %}
6
 
Edit post - {{ block.super }}
7
 
{% endblock %}
8
 
 
9
5
{% block content %}
10
 
{% include "django_messages/inlines/navigation.html" %}
11
 
<br />
12
 
<br />
13
 
<div class="box_item_model border">
14
 
    {% include "pybb/inlines/add_post_form.html" %}
 
6
<div class="crumbs">
 
7
<a href="{% url pybb_index %}">{% trans "Root" %}</a> / {% pybb_link post.topic.forum.category %} / {% pybb_link post.topic.forum %} / {% pybb_link post.topic %}
15
8
</div>
 
9
 
 
10
<h1>{% trans "Editing the post" %}</h1>
 
11
 
 
12
<form method="post">
 
13
    <fieldset>
 
14
        <legend>{% trans "Editing the post" %}</legend>
 
15
            {{ form.as_p }}
 
16
            <p><input type="submit" value="{% trans "Save" %}" /></p>
 
17
        </legend>
 
18
    </fieldset>
 
19
</form>
 
20
 
16
21
{% endblock %}