~widelands-dev/widelands-website/add_DISPLAY_hint

« back to all changes in this revision

Viewing changes to pybb/templates/pybb/edit_post.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:
 
1
{% extends 'pybb/base.html' %}
 
2
{% load pybb_extras %}
 
3
{% load i18n %}
 
4
 
 
5
{% block content %}
 
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 %}
 
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
 
 
21
{% endblock %}