Parent: [93768a] (diff)

Child: [ddf08c] (diff)

Download this file

new_topic_post.html    32 lines (31 with data), 1.5 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<form method="post" action="{{action}}">
{% if show_subject %}
<div class="grid-19">&nbsp;</div>
<div class="grid-19">
<label for="{{ widget.context_for(widget.fields.subject)['id'] }}" class="cr">Subject:</label>
<input id="{{ widget.context_for(widget.fields.subject)['id'] }}" name="{{ widget.context_for(widget.fields.subject)['rendered_name'] }}" type="text" style="width: 90%"{% if value %} value="{{value.subject or '(no subject)'}}"{% endif %}>
</div>
{% endif %}
{% if forums %}
<div class="grid-19">&nbsp;</div>
<div class="grid-19">
<label for="{{ widget.context_for(widget.fields.forum)['id'] }}" class="cr">Forum:</label>
<select id="{{ widget.context_for(widget.fields.forum)['id'] }}" name="{{ widget.context_for(widget.fields.forum)['rendered_name'] }}">
{% for forum in forums %}
<option value="{{forum.shortname}}">{{forum.name}}</option>
{% endfor %}
</select>
</div>
{% endif %}
<div class="grid-19">&nbsp;</div>
<div class="grid-19">
<label for="{{ widget.context_for(widget.fields.text)['id'] }}" class="cr">Description:</label>
{{widget.display_field(widget.fields.text)}}
</div>
<div class="grid-19">&nbsp;</div>
<div class="grid-19">
<input type="submit" value="{{submit_text}}"> <a href=".." class="btn link">Cancel</a>
</div>
{% if widget.antispam %}{% for fld in g.antispam.extra_fields() %}
{{fld}}{% endfor %}{% endif %}
</form>