FHIRFLARE-IG-Toolkit/templates/package.logs.html
Sudo-JHare ca8668e5e5 V2.0 release.
Hapi Config Page.
retrieve bundles from server
split bundles to resources.
new upload page, and Package Registry CACHE
2025-05-04 22:55:36 +10:00

22 lines
636 B
HTML

{% if logs %}
<table class="table table-striped table-hover">
<thead>
<tr>
<th scope="col">Version</th>
<th scope="col">Publication Date</th>
<th scope="col">When</th>
</tr>
</thead>
<tbody>
{% for log in logs %}
<tr>
<td>{{ log.version }}</td>
<td>{{ log.pubDate }}</td>
<td>{{ log.when }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<p class="text-muted">No version history found for this package.</p>
{% endif %}