Make select link in _as_table_row.html a nice button instead of <a href>.
Patch by: Pawel Solyga
Review by: to-be-reviewed
--- 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 %}