|
@@ -61,14 +61,14 @@
|
|
<form action="{{ get_action() }}" method="post">
|
|
<form action="{{ get_action() }}" method="post">
|
|
<input type="hidden" name="{{ csrf_id }}" value="{{ csrf_token }}">
|
|
<input type="hidden" name="{{ csrf_id }}" value="{{ csrf_token }}">
|
|
{% if 'thread_name' in form.fields %}
|
|
{% if 'thread_name' in form.fields %}
|
|
- {{ form_theme.row_widget(form.fields.thread_name) }}
|
|
|
|
|
|
+ {{ form_theme.row_widget(form.fields.thread_name, width=8) }}
|
|
<hr>
|
|
<hr>
|
|
<h4>Message Body</h4>
|
|
<h4>Message Body</h4>
|
|
{% endif %}
|
|
{% endif %}
|
|
{{ editor.editor(form.fields.post, get_button(), rows=8, extra=get_extra()) }}
|
|
{{ editor.editor(form.fields.post, get_button(), rows=8, extra=get_extra()) }}
|
|
{% if 'edit_reason' in form.fields %}
|
|
{% if 'edit_reason' in form.fields %}
|
|
<hr>
|
|
<hr>
|
|
- {{ form_theme.row_widget(form.fields.edit_reason) }}
|
|
|
|
|
|
+ {{ form_theme.row_widget(form.fields.edit_reason, width=8) }}
|
|
|
|
|
|
<div class="form-actions">
|
|
<div class="form-actions">
|
|
<button type="submit" class="btn btn-primary">{{ get_button() }}</button>
|
|
<button type="submit" class="btn btn-primary">{{ get_button() }}</button>
|