add block for assigning documents to a case, use company timezone, update anchor tag class
This commit is contained in:
@@ -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'>
|
||||
|
Reference in New Issue
Block a user