Skip to content

Commit

Permalink
on the user search results page, show the context for each resource
Browse files Browse the repository at this point in the history
  • Loading branch information
christianp committed May 27, 2021
1 parent 589b3fb commit c3763ae
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -36,7 +36,7 @@ <h2>Recent attempts</h2>
<tbody>
{% for attempt in user.attempts.all|slice:":10" %}
<tr>
<td><a href="{% url 'attempt_timeline' attempt.pk %}">{{attempt.resource.title}}</a></td>
<td><a href="{% url 'attempt_timeline' attempt.pk %}">{{attempt.resource.title}}</a> - <span class="text-muted">{{attempt.resource.context.name}}</span></td>
<td>{{attempt.start_time}}</td>
<td>
<a class="btn btn-link" target="review_attempt" href="{% url 'run_attempt' attempt.pk %}"><span class="text-success"><span class="glyphicon glyphicon-play"></span> {% trans "Review" %}</span></a>
Expand Down

0 comments on commit c3763ae

Please sign in to comment.