Skip to content
This repository has been archived by the owner on Aug 20, 2018. It is now read-only.

Commit

Permalink
Merge pull request #152 from bitgeeky/FixUserTask
Browse files Browse the repository at this point in the history
Bug 1034516 - [testing] Fix failing tests in test_user_tasks module
  • Loading branch information
bobsilverberg committed Jul 7, 2014
2 parents 93bb1aa + 35ec0f6 commit 2fc3a0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions oneanddone/tasks/templates/tasks/task_listing.html
Expand Up @@ -12,12 +12,12 @@ <h3>
{% for task in tasks %}
<li>
<p>
<a href="{{ task.get_absolute_url() }}">{{ task.name }}</a>
<a class="task-name" href="{{ task.get_absolute_url() }}">{{ task.name }}</a>
{% if user.is_staff %}
| <a href="{{ task.get_edit_url() }}">{{ _('Edit') }}</a>
| <a class="edit-task" href="{{ task.get_edit_url() }}">{{ _('Edit') }}</a>
{% endif %}
</p>
<p>{{ task.short_description }}</p>
<p class="task-desc">{{ task.short_description }}</p>
</li>
{% endfor %}
</ol>
Expand Down

0 comments on commit 2fc3a0d

Please sign in to comment.