Fix issues with no errors showing

This commit is contained in:
2011-12-05 23:33:18 +00:00
parent 01b161166c
commit 18a3705186
23 changed files with 33 additions and 7 deletions

View File

@@ -11,6 +11,7 @@
<p>Fill in a note you want to send to the user.</p>
<form action="{% url hr-acceptapplication application.id %}" method="post">
<fieldset>
{% include "formtools/formerror.html" %}
{% include "formtools/formfield.html" with field=form.text class="xxlarge" %}
{% include "formtools/formfield.html" with field=form.template %}
{% csrf_token %}

View File

@@ -12,6 +12,7 @@
<form action="{% url hr-addapplication %}" method="post">
<fieldset>
{% include "formtools/formerror.html" %}
{% include "formtools/formfield.html" with field=form.character %}
{% include "formtools/formfield.html" with field=form.corporation %}
{% csrf_token %}

View File

@@ -9,6 +9,7 @@
<form action="{% url hr-addmessage application.id %}" method="post">
<fieldset>
{% include "formtools/formerror.html" %}
{% include "formtools/formfield.html" with field=form.text class="xxlarge" %}
{% if form.template %}{% include "formtools/formfield.html" with field=form.template %}{% endif %}
{% csrf_token %}

View File

@@ -9,6 +9,7 @@
<form action="{% url hr-addnote application.id %}" method="post">
<fieldset>
{% include "formtools/formerror.html" %}
{% include "formtools/formfield.html" with field=form.text class="xxlarge" %}
{% csrf_token %}
<input type="submit" value="Add" class="btn primary"/>

View File

@@ -11,6 +11,7 @@
<form action="{% url hr-rejectapplication application.id %}" method="post">
<fieldset>
{% include "formtools/formerror.html" %}
{% include "formtools/formfield.html" with field=form.text class="xxlarge" %}
{% include "formtools/formfield.html" with field=form.template %}
{% csrf_token %}

View File

@@ -8,6 +8,7 @@
<form action="{% url hr-blacklist-add %}" method="post">
<fieldset>
{% include "formtools/formerror.html" %}
{% include "formtools/formfield.html" with field=form.type %}
{% include "formtools/formfield.html" with field=form.value class="xxlarge" %}
{% include "formtools/formfield.html" with field=form.reason class="xxlarge" %}

View File

@@ -14,6 +14,7 @@ The person you are recommending needs to have created their application before y
<form action="{% url hr-addrecommendation %}" method="post">
<fieldset>
{% include "formtools/formerror.html" %}
{% include "formtools/formfield.html" with field=form.character %}
{% include "formtools/formfield.html" with field=form.application %}
{% csrf_token %}