diff --git a/templates/internal/cases/case-list.html.twig b/templates/internal/cases/case-list.html.twig deleted file mode 100644 index 30a45d5..0000000 --- a/templates/internal/cases/case-list.html.twig +++ /dev/null @@ -1,45 +0,0 @@ -{% extends 'base.html.twig' %} - -{% block body %} - {{ block('nav', 'internal/libs/nav.html.twig') }} - -
- {{ block('topnav', 'internal/libs/top-nav.html.twig') }} - -
-
-
-
-
-
-
-
Case List
-
-
- -
-
-
-
-
- - - - - - - - - - - - -
NameCase #Referral #Hours RemEnd Date
-
-
-
-
-
-
-
-{% endblock %} diff --git a/templates/internal/cases/list-cases.html.twig b/templates/internal/cases/list-cases.html.twig new file mode 100644 index 0000000..8a9b35a --- /dev/null +++ b/templates/internal/cases/list-cases.html.twig @@ -0,0 +1,104 @@ +{% extends 'base.html.twig' %} + +{% block body %} + {{ block('nav', 'internal/libs/nav.html.twig') }} + +
+ {{ block('topnav', 'internal/libs/top-nav.html.twig') }} + +
+
+
+
+
+
+
+
Case List
+
+
+ +
+
+
+
+
+ Filters: + +
+
+ + + + + + + + + + + + + + {% for c in cases %} + + + + + + + + + + + + + {% endfor %} + +
NameCase #DCS Case IDType/SourceCountyCase Worker
+
+
+
{{ c.caseName }}
+
+
+
+

{{ c.caseNumber }}

+
+

{{ c.dcsCaseId }}

+
+

+ {{ c.referralType }}/{{ c.referralSource.name }}
+ {{ c.referralSource.email }} +

+
+

{{ c.county.value }}

+
+

+ {% if c.userCases|length > 0 %} + {{ c.userCases.0.user.name }} + {% endif %} +

+
+ + edit + + + person_add + + + create_new_folder + + + person_add + +
+
+
+
+
+
{% endblock %}