Changeset - 240eb42df411
[Not reviewed]
0 1 0
Luke Hatcher - 12 years ago 2012-08-31 06:32:30
lukeman@gmail.com
add chosen
1 file changed with 7 insertions and 1 deletions:
0 comments (0 inline, 0 general)
symposion/templates/schedule/schedule_edit.html
Show inline comments
...
 
@@ -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">&times;</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 %}
0 comments (0 inline, 0 general)