view templates/snippet/rate_form_readonly.djhtml @ 212:172fef440a90 draft default tip

Code Cleanup in templates and CSS files.
author Ahsan Ali Shahid <ahsan.ali.shahid@gmail.com>
date Sun, 22 Sep 2013 04:16:20 +0500
parents be08e004d8b9
children
line wrap: on
line source

<div>
<table>
<tr><td>Total Votes:</td>
	<td>{{ snippet.rating.votes }} &nbsp; &nbsp; </td>
	<td>Rating:</td>
    <td>
    	{% for x in "12345" %}
    	<input name="Rate" type="radio" class="star"  disabled = "disabled"  
    	value="{{ forloop.counter }}"
		{% if score == forloop.counter %} 
			checked = "checked" 
		{% endif%} />
		{% endfor %}
	</td>
</tr>
</table>
</div>