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
623 B
15 lines
623 B
{# |
|
The Patient Portal card for the Medical Record Dashboard |
|
|
|
@author Robert Down <robertdown@live.com> |
|
@copyright Copyright (c) 2022 Robert Down <robertdown@live.com> |
|
@package OpenEMR |
|
#} |
|
|
|
{% block delete %} |
|
{% if isAdmin == true and allowPatientDelete == true %} |
|
<a class="btn btn-block btn-danger text-light deleter delete" |
|
href="{{ webroot|attr }}/interface/patient_file/deleter.php?patient={{ pid|attr_url }}&csrf_token_form={{ csrf|attr_url }}" |
|
onclick='return top.restoreSession()'><i class="fa fa-user-times fa-fw"></i> {{ "Delete Patient"|xlt }}</a> |
|
{% endif %} |
|
{% endblock %}
|
|
|