{% extends "base.html" %} {% load range_filter %} {% block title %} JAM 2012 Application form {% endblock %} {% block content %}

Welcome to JAM 2012 allotment!

Read the following instructions carefully before continuing.


Choose the options as per your preference

You are eligible for {{first_paper}} {% comment %} Checking if there is second paper and displaying its name. {% endcomment %} {% if np == 2 %} and {{second_paper}} {% endif %}

For the paper(s) in which you are in the merit list, the following options are available to you. Please rank your choices.

Preferences will be assigned to options in the ascending order. Make sure it's None for all options after your last option(so that it is not considered).


{% comment %} Listing the options for first test paper. {% endcomment %}

Options available for {{first_paper}}

{% if error_message %}

{{ error_message }}

{% endif %}
{% csrf_token %} {% for option in options_available_first %} {% endfor %}

Programme Code

Programme Name

Insitute

Preference

{{ option.opt_code }}

{{option.opt_name }}

{{option.opt_location }}

{% if np == 2 %}

Options available for {{second_paper}}

{% for option in options_available_second %} {% endfor %}

Programme Code

Programme Name

Insitute

Preference

{{option.opt_code }}

{{option.opt_name }}

{{option.opt_location }}

{% endif %}

{% endblock content %}