use a-tag instead of onclick for nojs use

This commit is contained in:
Oskar Hahn 2011-08-31 14:17:11 +02:00
parent db43f4ea2c
commit 67c6fdba29
2 changed files with 8 additions and 4 deletions

View File

@ -55,13 +55,15 @@
</tr>
<tr {% if overview %}class="activeline"{% endif %}>
<td {% if perms.agenda.can_manage_agenda %}
class="select" onclick="window.location.href='{% url item_activate 0 %}'"
class="select"
{% endif %}>
<a href="{% url item_activate 0 %}">
{% if overview %}
<img class="center" src="/static/images/icons/task-accepted.png" title="{% trans 'Agenda selected' %}">
{% else %}
{% if perms.agenda.can_manage_agenda %}<img class="center" src="/static/images/icons/task-accepted-grey.png" title="{% trans 'Select agenda' %}">{% endif %}
{% endif %}
</a>
</td>
<td><i>{% trans "Agenda" %} ({{ items|length }} {% trans "items" %})</i></td>
{% if perms.agenda.can_manage_agenda %}
@ -77,13 +79,15 @@
{% if item.parent.active and summary %}activesummarychildline{% endif %}
{% endif %}">
<td {% if perms.agenda.can_manage_agenda %}
class="select" onclick="window.location.href='{% url item_activate item.id %}'"
class="select"
{% endif %}>
<a id="activate_link_{{ item.id }}" class="activate_link" href="{% url item_activate item.id %}">
{% if item.active %}
<img class="center" src="/static/images/icons/task-accepted.png" title="{% trans 'Item selected' %}"></span>
{% else %}
{% if perms.agenda.can_manage_agenda %}<img class="center" src="/static/images/icons/task-accepted-grey.png" title="{% trans 'Select item' %}"> {% endif %}
{% endif %}
</a>
</td>
<td>
{% for p in item.parents %}