comparison templates/snippet/rate_form.djhtml @ 208:a22259c9862e

Removed redundant code for ratings field and add a separate template file for ratings field. Now ratings will be handled by Jquery.
author Ahsan Ali Shahid <ahsan.ali.shahid@gmail.com>
date Wed, 21 Aug 2013 03:52:06 +0500
parents
children
comparison
equal deleted inserted replaced
207:d534881629ff 208:a22259c9862e
1 <div id = "radio_votes">
2 <form action = "rating/process/" method = "POST" id="rate_form">
3 {% csrf_token%}
4 <h3 id ="rate_label">Rate this Snippet:</h3>
5 <ul>
6 {% for x in "12345" %}
7 <li><label for="id_Rate_{{ forloop.counter }}"><input name="Rate" type="radio" class="rate_radio" value="{{ forloop.counter }}" id="id_Rate_0"> {{ forloop.counter }}</label></li>
8 {% endfor %}
9 </ul>
10 <input type="hidden" name="next" value="{{ request.get_full_path }}" />
11 </form>
12 </div>