diff options
Diffstat (limited to 'servo/templates')
-rwxr-xr-x | servo/templates/notes/form.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/servo/templates/notes/form.html b/servo/templates/notes/form.html index ae0f019..d471385 100755 --- a/servo/templates/notes/form.html +++ b/servo/templates/notes/form.html @@ -50,7 +50,14 @@ {% include "form_field_snippet.html" with field=form.subject %} {% include "form_field_snippet.html" with field=form.sender %} {% include "form_field_snippet.html" with field=form.body %} - {% include "form_field_snippet.html" with field=form.is_reported %} + {% if note.order %} + <table> + <tr> + <td>{% include "form_field_snippet.html" with field=form.is_reported %}</td> + <td>{% include "form_field_snippet.html" with field=form.attach_confirmation %}</td> + </tr> + </table> + {% endif %} {{ form.type }} </div> <div class="tab-pane" id="tab2"> |