add chosen
This commit is contained in:
parent
1871be41e9
commit
240eb42df4
1 changed files with 7 additions and 1 deletions
|
@ -11,6 +11,7 @@
|
|||
{% endblock %}
|
||||
|
||||
{% block extra_head %}
|
||||
<link rel="stylesheet" href="{{ STATIC_URL }}chosen/chosen.css" />
|
||||
<style>
|
||||
td {
|
||||
font-size: 9pt;
|
||||
|
@ -43,6 +44,9 @@
|
|||
font-weight: bold;
|
||||
line-height: 10pt;
|
||||
}
|
||||
#id_presentation {
|
||||
width:400px;
|
||||
}
|
||||
</style>
|
||||
{% endblock %}
|
||||
|
||||
|
@ -64,7 +68,7 @@
|
|||
<a class="close" data-dismiss="modal">×</a>
|
||||
<h3>{% trans "Edit Slot" %}</h3>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div class="modal-body" style="height:300px">
|
||||
{% csrf_token %}
|
||||
{{ form|as_bootstrap }}
|
||||
</div>
|
||||
|
@ -77,12 +81,14 @@
|
|||
{% endblock %}
|
||||
|
||||
{% block extra_script %}
|
||||
<script src="{{ STATIC_URL }}chosen/chosen.jquery.min.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
$(function() {
|
||||
$("a.edit-slot").click(function() {
|
||||
$("#slotEditForm").get(0).setAttribute("action", $(this).data("action"));
|
||||
$("#slotEditModal").modal("show");
|
||||
});
|
||||
$("#id_presentation").chosen();
|
||||
});
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in a new issue