diff --git a/templates/internal/staff/notes/sign-note.html.twig b/templates/internal/staff/notes/sign-note.html.twig new file mode 100644 index 0000000..32f6448 --- /dev/null +++ b/templates/internal/staff/notes/sign-note.html.twig @@ -0,0 +1,62 @@ +{% extends 'base.html.twig' %} + +{% block stylesheet %} + +{% endblock %} + +{% block body %} + {{ block('nav', 'internal/libs/nav.html.twig') }} + + + {{ block('topnav', 'internal/libs/top-nav.html.twig') }} + + + + + + Staff Case Note + + + + + {{ form_start(form) }} + + {{ form_errors(form) }} + + + + + + + + + {{ form_row(form.servicesProvided) }} + + + + + + {{ field_value(form.note) }} + + + + + + + Save and Sign Note + + + {{ form_end(form) }} + + + + + +{% endblock %} diff --git a/templates/internal/staff/notes/sup-sign-note.html.twig b/templates/internal/staff/notes/sup-sign-note.html.twig new file mode 100644 index 0000000..79f3ef0 --- /dev/null +++ b/templates/internal/staff/notes/sup-sign-note.html.twig @@ -0,0 +1,67 @@ +{% extends 'base.html.twig' %} + +{% block stylesheet %} + +{% endblock %} + +{% block body %} + {{ block('nav', 'internal/libs/nav.html.twig') }} + + + {{ block('topnav', 'internal/libs/top-nav.html.twig') }} + + + + + + Case Info + + + + + {{ form_start(form) }} + + {{ form_errors(form) }} + + + + + + + + + Recommendation + + + + + {{ form_row(form.servicesProvided) }} + + + + + + {{ field_value(form.note) }} + + + + + + + Save and Sign Note + + + {{ form_end(form) }} + + + + + +{% endblock %} diff --git a/templates/internal/staff/notes/view-note.html.twig b/templates/internal/staff/notes/view-note.html.twig new file mode 100644 index 0000000..aad69b3 --- /dev/null +++ b/templates/internal/staff/notes/view-note.html.twig @@ -0,0 +1,55 @@ +{% extends 'base.html.twig' %} + +{% block body %} + {{ block('nav', 'internal/libs/nav.html.twig') }} + + + {{ block('topnav', 'internal/libs/top-nav.html.twig') }} + + + + + + Case Info + + + + + + + + Supervisor Signed: + {{ note.supervisorSignDateTime|date("F j, Y h:i a") }} + Case Worker Signed: + {{ note.workerSignDatetime|date("F j, Y h:i a") }} + + + + + + + + + Recommendations + + + + + + + {{ note.note }} + + + + + + + Back + + + + + + + +{% endblock %}
Supervisor Signed: + {{ note.supervisorSignDateTime|date("F j, Y h:i a") }}
Case Worker Signed: + {{ note.workerSignDatetime|date("F j, Y h:i a") }}