FHIRFLARE-IG-Toolkit/templates/package.problems.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

16 lines
377 B
HTML

<table class="table table-striped">
<thead>
<tr>
<th>Package</th>
<th>Dependency</th>
</tr>
</thead>
<tbody>
{% for problem in problems %}
<tr>
<td>{{ problem.package }}</td>
<td class="text-danger">{{ problem.dependency }}</td>
</tr>
{% endfor %}
</tbody>
</table>