~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to templates/threadedcomments/preview_comment.html

  • Committer: Holger Rapp
  • Date: 2010-01-04 21:48:27 UTC
  • Revision ID: rapp@mrt.uka.de-20100104214827-s25412s3wg0xcytd
Fixed bug 502741 in a ugly fashion

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "base.html" %}
 
2
 
 
3
{% load threadedcommentstags %}
 
4
 
 
5
{% block content %}
 
6
    {% if comment %}
 
7
        <div id="comment_preview">{% auto_transform_markup comment %}</div>
 
8
    {% endif %}
 
9
   <form method="POST" action="">
 
10
         <div class="content">
 
11
            <table class="text" width="100%">
 
12
            <tr>
 
13
               <td width="99%">
 
14
                  <span class=errorclass">{{ form.comment.errors }}</span>
 
15
                     {{ form.comment }}
 
16
               </td>
 
17
               <td width="1%"></td>
 
18
            </tr>
 
19
            </table>
 
20
      </div>
 
21
                        <table class="bottom_line" width="100%">
 
22
                                <tr>
 
23
                                        <td class="admin">
 
24
                                                <input type="hidden" name="markup" value="1" />
 
25
                                                <input type="submit" value="Submit Comment" />
 
26
                                        </td>
 
27
                                </tr>
 
28
                        </table>
 
29
        </form>
 
30
{% endblock %}