mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-25 15:49:29 +00:00
Fix issues with no errors showing
This commit is contained in:
@@ -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 %}
|
||||
|
||||
@@ -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 %}
|
||||
|
||||
@@ -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 %}
|
||||
|
||||
@@ -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"/>
|
||||
|
||||
@@ -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 %}
|
||||
|
||||
@@ -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" %}
|
||||
|
||||
@@ -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 %}
|
||||
|
||||
Reference in New Issue
Block a user