Make select link in _as_table_row.html a nice button instead of <a href>.
authorPawel Solyga <Pawel.Solyga@gmail.com>
Sat, 24 Jan 2009 12:47:21 +0000
changeset 956 aaac33732ad5
parent 955 b00251a6b9f9
child 957 5b657063b23b
Make select link in _as_table_row.html a nice button instead of <a href>. Patch by: Pawel Solyga Review by: to-be-reviewed
app/soc/templates/soc/templatetags/_as_table_row.html
--- a/app/soc/templates/soc/templatetags/_as_table_row.html	Sat Jan 24 12:45:57 2009 +0000
+++ b/app/soc/templates/soc/templatetags/_as_table_row.html	Sat Jan 24 12:47:21 2009 +0000
@@ -41,7 +41,7 @@
   {% endif %}
 
   {% if select_url %}
-  <td><a href="{{ select_url }}">select</a></td>
+  <td><input type="button" onclick="location.href='{{ select_url }}'" value="Select"/></td>
   {% else %}
   <td></td>
   {% endif %}