add message link to staff note signature notifications
This commit is contained in:
@ -36,6 +36,11 @@
|
||||
<input type='date' name='{{ field_name(form.date) }}' value='{{ field_value(form.date) }}' id='note_form_date' class='form-control'/>
|
||||
</div>
|
||||
|
||||
<div class='input-group input-group-outline mb-3 is-filled'>
|
||||
<label for='note_form_recommendations' class='form-label'>Recommendations</label>
|
||||
<input type='text' name='note_form_recommendations' value='{{ note.recommendations }}' disabled='disabled' class='form-control'/>
|
||||
</div>
|
||||
|
||||
<div class='input-group input-group-outline mb-3'>
|
||||
{{ form_row(form.servicesProvided) }}
|
||||
</div>
|
||||
|
@ -17,11 +17,14 @@
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class='col'>
|
||||
<div class='input-group input-group-outline mb-3'>
|
||||
<p>Supervisor Signed:
|
||||
{{ note.supervisorSignDateTime|date("F j, Y h:i a") }}</p>
|
||||
<p>Case Worker Signed:
|
||||
{{ note.workerSignDatetime|date("F j, Y h:i a") }}</p>
|
||||
<div>
|
||||
<div>Supervisor:
|
||||
{{ note.supervisorSignDateTime|date("F j, Y h:i a") }}</div>
|
||||
<div>Case Worker:
|
||||
{% if note.workerSignDatetime %}
|
||||
{{ note.workerSignDatetime|date("F j, Y h:i a") }}{% else %}Unsigned
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class='input-group input-group-outline mb-3'>
|
||||
|
Reference in New Issue
Block a user