app/soc/templates/modules/ghop/program/allocation/allocation.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Tue, 15 Sep 2009 22:01:16 +0200
changeset 2926 effa1cfb3607
parent 2828 a0f221472487
permissions -rw-r--r--
Added school_type and grade property to Student model. A GAE Task will be provided to update the existing entities in a later commit. Reviewed by: Lennard de Rijk

{% extends "soc/models/list.html" %}

{% block scripts %}
{{ block.super }}

<script type="text/javascript">
  var RETURN_URL = "{{ return_url }}";
  $(document).ready(function(){
    $('[id^=id_spin_slot_count_]').spin({min:0});
  });
</script>
{% endblock %}

{% block body %}
<form method="POST">
<input style="font-weight: bold" type="submit" value="Submit"/></span>
{% if error_message %}
<div class="error">{{ error_message|safe }}</div>
{% endif %}
{{ block.super }}
</form>
{% endblock %}