+ {{ edit_corpus_file_form.hidden_tag() }}
+
+
+
+ person
+ {{ edit_corpus_file_form.author(data_length='64', value=corpus_file.author) }}
+ {{ edit_corpus_file_form.author.label }}
+ {% for error in edit_corpus_file_form.author.errors %}
+ {{ error }}
+ {% endfor %}
+
+
+
+
+ title
+ {{ edit_corpus_file_form.title(data_length='64', value=corpus_file.title) }}
+ {{ edit_corpus_file_form.title.label }}
+ {% for error in edit_corpus_file_form.title.errors %}
+ {{ error }}
+ {% endfor %}
+
+
+
+
+ access_time
+ {{ edit_corpus_file_form.publishing_year(value=corpus_file.publishing_year) }}
+ {{ edit_corpus_file_form.publishing_year.label }}
+ {% for error in edit_corpus_file_form.publishing_year.errors %}
+ {{ error }}
+ {% endfor %}
+
+
+
+
+