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.
 
 
 
 
 
 

15 lines
407 B

{% extends "patient/card/card_base.html.twig" %}
{% block content %}
<table id="patient_stats_spreadsheets">
{% for r in formRows %}
<tr>
<td>
<a href="#" onclick="load_location('../../forms/{{ formName|attr }}/new.php?popup=1&id={{ r.id|attr_url }}')" class="link">{{ r.startDate|text }} {{ r.templateName|text }}</a>
</td>
</tr>
{% endfor %}
</table>
{% endblock %}