diff options
author | Madhusudan.C.S | 2010-07-13 23:40:34 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2010-07-13 23:40:34 +0530 |
commit | d5fbda31f85176ccfd0a5e49561f1180a998df16 (patch) | |
tree | 9ba55c865fb15d3cdd67bf65d9e2308d51d66c69 /project/templates/proceedings/submit.html | |
parent | 3ec894e684c645876402a9cac912d98b5ed06c37 (diff) | |
download | scipycon-d5fbda31f85176ccfd0a5e49561f1180a998df16.tar.gz scipycon-d5fbda31f85176ccfd0a5e49561f1180a998df16.tar.bz2 scipycon-d5fbda31f85176ccfd0a5e49561f1180a998df16.zip |
Removed unwanted files and made more changes to make SciPyCon a clean app.
Diffstat (limited to 'project/templates/proceedings/submit.html')
-rw-r--r-- | project/templates/proceedings/submit.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/project/templates/proceedings/submit.html b/project/templates/proceedings/submit.html index de6b516..013980b 100644 --- a/project/templates/proceedings/submit.html +++ b/project/templates/proceedings/submit.html @@ -11,7 +11,7 @@ // Set autosuggest options with all plugins activated var options = { - script:"{% url kiwipycon_get_usernames %}?limit=10&", + script:"{% url scipycon_get_usernames %}?limit=10&", varname:"input", json:true, // Returned response type shownoresults:true, // If disable, display nothing if no results @@ -41,21 +41,21 @@ {% include '_errors.html' %} - <form action="{% if id %}{% url kiwipycon_submit_proceedings id %}{% else %}{% url kiwipycon_submit_proceedings %}{% endif %}" method="post"> + <form action="{% if id %}{% url scipycon_submit_proceedings id %}{% else %}{% url scipycon_submit_proceedings %}{% endif %}" method="post"> {% if not user.is_authenticated %} <fieldset> <legend>Are you a member of this site?</legend> - <table class="kiwipycon-default required">{{ login_form }}</table> + <table class="scipycon-default required">{{ login_form }}</table> <input type="hidden" name="action" value="login" /> <button class="button left" type="submit">Login</button> </fieldset> </form> <br /> - <form action="{% url kiwipycon_submit_proceedings id %}" + <form action="{% url scipycon_submit_proceedings id %}" enctype="multipart/form-data" method="post"> <fieldset> <legend>User Registration</legend> - <table class="kiwipycon-default required">{{ register_form }}</table> + <table class="scipycon-default required">{{ register_form }}</table> <input type="hidden" name="action" value="register" /> </fieldset> @@ -64,7 +64,7 @@ <fieldset> <legend>Proceedings Paper Submission</legend> - <table class="kiwipycon-default required"> + <table class="scipycon-default required"> <tr> <th>{{ proceedings_form.title.label }}</th> <td>{{ proceedings_form.title.errors }}{{ proceedings_form.title }}</td> |