Skip to content

Commit

Permalink
templates: display container_images in records
Browse files Browse the repository at this point in the history
Displays container images information in detailed record pages.
  • Loading branch information
nancyhamdan authored and tiborsimko committed Sep 12, 2023
1 parent 4e67176 commit c76e1dc
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,15 @@ <h2>System details</h2>
<label>Recommended release for analysis:</label>
{% endif %}
<span>{{record.system_details.release}}</span>
{% if record.system_details.container_images %}
<br>
<span>Recommended container image for analyses is available in the following locations (<a href="/docs/cms-guide-docker">see guide</a>): </span>
<ul>
{% for container_image in record.system_details.container_images %}
<li><code>{{ container_image.name }}</code></li>
{% endfor %}
</ul>
{% endif %}
{% endif %}
{% if record.system_details.recid %}
<p>
Expand Down

0 comments on commit c76e1dc

Please sign in to comment.