Add character counter to job forms.

This commit is contained in:
Patrick Jentsch
2019-09-12 11:12:59 +02:00
parent 129ee05b51
commit 16fad5bb2d
4 changed files with 42 additions and 60 deletions

View File

@@ -60,7 +60,7 @@
<div class="col s12 m4">
<div class="input-field">
<i class="material-icons prefix">title</i>
{{ new_nlp_job_form.title() }}
{{ new_nlp_job_form.title(data_length='32') }}
{{ new_nlp_job_form.title.label }}
{% for error in new_nlp_job_form.title.errors %}
<span class="helper-text red-text">{{ error }}</span>
@@ -106,7 +106,7 @@
<div class="col s12 m6">
<div class="input-field">
<i class="material-icons prefix">description</i>
{{ new_nlp_job_form.description() }}
{{ new_nlp_job_form.description(data_length='255') }}
{{ new_nlp_job_form.description.label }}
{% for error in new_nlp_job_form.description.errors %}
<span class="helper-text red-text">{{ error }}</span>

View File

@@ -61,7 +61,7 @@
<div class="col s12 m4">
<div class="input-field">
<i class="material-icons prefix">title</i>
{{ new_ocr_job_form.title() }}
{{ new_ocr_job_form.title(data_length='32') }}
{{ new_ocr_job_form.title.label }}
{% for error in new_ocr_job_form.title.errors %}
<span class="helper-text red-text">{{ error }}</span>
@@ -107,7 +107,7 @@
<div class="col s12 m6">
<div class="input-field">
<i class="material-icons prefix">description</i>
{{ new_ocr_job_form.description() }}
{{ new_ocr_job_form.description(data_length='255') }}
{{ new_ocr_job_form.description.label }}
{% for error in new_ocr_job_form.description.errors %}
<span class="helper-text red-text">{{ error }}</span>