Skip to content

Commit

Permalink
fixed associated datasets not showing up in reference paper list temp…
Browse files Browse the repository at this point in the history
…late
  • Loading branch information
rwblair committed Feb 4, 2016
1 parent b3830b5 commit 403902e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions open_fmri/templates/dataset/referencepaper_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ <h1 class="title">Reference Papers</h1>
<td>{{ ref_paper.title }}</td>
<td><a href="{{ ref_paper.url }}">{{ ref_paper.url }}</a></td>
<td>
{% for dataset in ref_paper.dataset_list %}
<a href="{% url 'dataset_detail' dataset.accession_number %}">{{ dataset.project_name }}</a><br>
{% for dataset in ref_paper.datasets.all %}
<a href="{% url 'dataset_detail' dataset.accession_number %}">{{ dataset }}</a><br>
{% endfor %}
</td>
<td>
Expand Down

0 comments on commit 403902e

Please sign in to comment.