Skip to content
Snippets Groups Projects
Commit ae1a3e3f authored by Leonidas Poulopoulos's avatar Leonidas Poulopoulos
Browse files

Add fragment type in application form

parent a6e30e87
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@
});
$('#id_then').attr("multiple", "");
/*$('#id_then').attr("multiple", "");*/
$( "#id_expires" ).datepicker({ dateFormat: 'yy-mm-dd' , maxDate: '+10d', minDate: '+1d', changeMonth: false, changeYear: false }).datepicker( $.datepicker.regional[ "el" ] );
{% comment %}
$('#then_diag').dialog({
......@@ -276,6 +276,18 @@
</div>
</div>
<div class="control-group {% if form.fragmenttype.errors %} error {% endif %}">
<label class="control-label" for="id_fragmenttype">{% trans "Fragment Type" %}</label>
<div class="controls">{{ form.fragmenttype }}
{% if form.fragmenttype.errors %}
<span class="help-inline">
{{ form.fragmenttype.errors|join:", " }}
</span>
{% endif %}
</div>
</div>
<div
class="control-group {% if form.port.errors %} error {% endif %}">
<label class="control-label" for="id_port">{% trans "Ports" %}</label>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment