add block for assigning documents to a case, use company timezone, update anchor tag class

This commit is contained in:
2025-01-10 15:03:53 +00:00
parent 722954d0d0
commit b7b0c8e6c4
19 changed files with 400 additions and 73 deletions

View File

@@ -19,17 +19,17 @@
<div class='col'>
<div>
<div>Supervisor:
{{ note.supervisorSignDateTime|date("F j, Y h:i a") }}</div>
{{ note.supervisorSignDateTime|date("F j, Y h:i a", company_timezone) }}</div>
<div>Case Worker:
{% if note.workerSignDatetime %}
{{ note.workerSignDatetime|date("F j, Y h:i a") }}{% else %}Unsigned
{{ note.workerSignDatetime|date("F j, Y h:i a", company_timezone) }}{% else %}Unsigned
{% endif %}
</div>
</div>
<div class='input-group input-group-outline mb-3'>
<label for='note_form_date'></label>
<input type='date' name='date' id='note_form_date' value='{{ note.date|date("Y-m-d") }}' disabled="disabled" class='form-control'/>
<input type='date' name='date' id='note_form_date' value='{{ note.date|date("Y-m-d", company_timezone) }}' disabled="disabled" class='form-control'/>
</div>
<div class='input-group input-group-outline mb-3 is-filled'>