mirror of
https://github.com/Sudo-JHare/FHIRFLARE-IG-Toolkit.git
synced 2025-06-14 16:19:59 +00:00
Hapi Config Page. retrieve bundles from server split bundles to resources. new upload page, and Package Registry CACHE
22 lines
636 B
HTML
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 %} |