test
This commit is contained in:
@@ -14,6 +14,34 @@
|
||||
<form method='Post' action='' enctype="multipart/form-data">
|
||||
{{ form.hidden_tag() }}
|
||||
<fieldset class="form-group">
|
||||
<div class="form-group">
|
||||
{{ form.comments.label() }}
|
||||
{{ form.comments(class="form-control-file") }}
|
||||
{% if form.comments.errors %}
|
||||
{% for error in form.comments.errors %}
|
||||
<span class="text-danger">{{ error }}</span></br>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
<div class="form-group">
|
||||
{{ form.types.label() }}
|
||||
{{ form.types(class="form-control-file") }}
|
||||
{% if form.types.errors %}
|
||||
{% for error in form.types.errors %}
|
||||
<span class="text-danger">{{ error }}</span></br>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
<div class="form-group">
|
||||
{{ form.remove_tags.label() }}
|
||||
{{ form.remove_tags(class="form-control-file") }}
|
||||
{% if form.remove_tags.errors %}
|
||||
{% for error in form.remove_tags.errors %}
|
||||
<span class="text-danger">{{ error }}</span></br>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<legend class="border-bottom mb-4">.java Datei hochladen:</legend>
|
||||
<div class="form-group">
|
||||
{{ form.java.label() }}
|
||||
|
||||
Reference in New Issue
Block a user