diff options
author | parth | 2012-04-11 14:06:05 +0530 |
---|---|---|
committer | parth | 2012-04-11 14:06:05 +0530 |
commit | c3938750c6c33eec8d921a332aca91505e7da1d4 (patch) | |
tree | 10a527da11fa905e1e19c1e018da030a2eec6923 | |
parent | 75fdf0a2166d03b41cbccce3f2500c30044daf90 (diff) | |
download | aloha-c3938750c6c33eec8d921a332aca91505e7da1d4.tar.gz aloha-c3938750c6c33eec8d921a332aca91505e7da1d4.tar.bz2 aloha-c3938750c6c33eec8d921a332aca91505e7da1d4.zip |
Made only None selected by default, to work with IE
-rw-r--r-- | aloha/template/allotter/apply.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/aloha/template/allotter/apply.html b/aloha/template/allotter/apply.html index 39d1411..91b2783 100644 --- a/aloha/template/allotter/apply.html +++ b/aloha/template/allotter/apply.html @@ -124,7 +124,7 @@ Listing the options for first test paper. <td><p> {{option.opt_location }} </p></td> <td><select class="{{option.opt_code}}" name="{{option.opt_code}}"> {% for i in options_range %} - <option value="{{i}}" selected="selected">Preference {{i}}</option> + <option value="{{i}}" >Preference {{i}}</option> {% endfor %} <option value="0" selected="selected">None</option> </select> @@ -154,7 +154,7 @@ Listing the options for first test paper. <td><p> {{option.opt_location }} </p></td> <td><select class="{{option.opt_code}}" name="{{option.opt_code}}"> {% for i in options_range %} - <option value="{{i}}" selected="selected">Preference {{i}}</option> + <option value="{{i}}">Preference {{i}}</option> {% endfor %} <option value="0" selected="selected">None</option> </select> |