You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
510 B
17 lines
510 B
{% extends "patient/card/card_base.html.twig" %} |
|
|
|
{% block content %} |
|
<div class="list-group list-group-flush imz"> |
|
{% if imx|length == 0 %} |
|
<div class="list-group-item d-flex w-100"> |
|
{{ "None{{Immunizations}}"|xlt }} |
|
</div> |
|
{% else %} |
|
{% for i in imx %} |
|
<div class="list-group-item d-flex w-100 p-1"> |
|
<a href="#" class="link" onclick="javascript:load_location({{ i.url}})">{{ i.immunization_data }}</a> |
|
</div> |
|
{% endfor %} |
|
{% endif %} |
|
</div> |
|
{% endblock %}
|
|
|