~widelands-dev/widelands-website/add_DISPLAY_hint

« back to all changes in this revision

Viewing changes to pybb/templates/pybb/delete_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 i18n %}
 
3
 
 
4
{% block content %}
 
5
<h1>{% trans "Are you sure you want to delete this message?" %}</h1>
 
6
<p class="post-preview">
 
7
    {{ post.body_html|safe }}
 
8
</p>
 
9
<form method="post">
 
10
    <p><input type="submit" value="{% trans "Yes, I am sure." %}" /></p>
 
11
</form>
 
12
{% endblock %}