equal
deleted
inserted
replaced
|
1 {% extends "soc/models/list.html" %} |
|
2 |
|
3 {% block scripts %} |
|
4 {{ block.super }} |
|
5 |
|
6 <script type="text/javascript"> |
|
7 var RETURN_URL = "{{ return_url }}"; |
|
8 $(document).ready(function(){ |
|
9 $('[id^=id_spin_slot_count_]').spin({min:0}); |
|
10 }); |
|
11 </script> |
|
12 {% endblock %} |
|
13 |
|
14 {% block body %} |
|
15 <form method="POST"> |
|
16 <input style="font-weight: bold" type="submit" value="Submit"/></span> |
|
17 {% if error_message %} |
|
18 <div class="error">{{ error_message|safe }}</div> |
|
19 {% endif %} |
|
20 {{ block.super }} |
|
21 </form> |
|
22 {% endblock %} |
|
23 |