Skip to content
8 changes: 8 additions & 0 deletions qiita_pet/templates/list_analyses.html
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ <h3 class="gray-msg">Your Analyses</h3>
<thead>
<tr>
<th>Artifacts</th>
<th>Analysis ID</th>
<th>Analysis Name</th>
<th>Visibility</th>
<th>Creation Timestamp</th>
Expand All @@ -155,6 +156,9 @@ <h3 class="gray-msg">Your Analyses</h3>
<td>
{{analysis['artifacts']}}
</td>
<td>
{{analysis['analysis_id']}}
</td>
<td>
<a href="{% raw qiita_config.portal_dir %}/analysis/description/{{analysis['analysis_id']}}/">{{analysis['name']}}</a>
{% if analysis['description'] %}
Expand Down Expand Up @@ -189,6 +193,7 @@ <h3 class="gray-msg">Public Analyses</h3>
<thead>
<tr>
<th>Artifacts</th>
<th>Analysis ID</th>
<th>Analysis Name</th>
<th>Creation Timestamp</th>
<th>Mapping File</th>
Expand All @@ -199,6 +204,9 @@ <h3 class="gray-msg">Public Analyses</h3>
<td>
{{analysis['artifacts']}}
</td>
<td>
{{analysis['analysis_id']}}
</td>
<td>
<a href="{% raw qiita_config.portal_dir %}/analysis/description/{{analysis['analysis_id']}}/">{{analysis['name']}}</a>
{% if analysis['description'] %}
Expand Down