@@ -21,8 +21,8 @@
| Secondary Paralegal |
Documents |
Matter Stage |
- Completed Tasks |
- Pending Tasks |
+ Completed Tasks |
+ Pending Tasks |
Notice Service Date |
Notice Expir. Date |
Date Case Filed |
@@ -84,14 +84,25 @@
Documents
{% endif %}
{{ r.phase_name }} |
-
+ |
{% if r.completed_tasks %}
-
- {% for x in r.completed_tasks[:2] %}
- - {{ x.description }} - {{ x.completed }}
- {% endfor %}
-
+
+
+
+ | Task |
+ Completed |
+
+
+
+ {% for x in r.completed_tasks[:2] %}
+
+ | {{ x.description }} |
+ {{ x.completed }} |
+
+ {% endfor %}
+
+
{% if r.completed_tasks|length > 2 %}
{% endif %}
@@ -110,23 +121,43 @@
-
- {% for x in r.completed_tasks %}
- - {{ x.description }} - {{ x.completed }}
- {% endfor %}
-
+
+
+
+ | Task Description |
+ Completed Date |
+
+
+
+ {% for x in r.completed_tasks %}
+
+ | {{ x.description }} |
+ {{ x.completed }} |
+
+ {% endfor %}
+
+
{% endif %}
|
-
+ |
{% if r.pending_tasks %}
-
- {% for x in r.pending_tasks[:2] %}
- - {{ x.description }}
- {% endfor %}
-
+
+
+
+ | Task |
+
+
+
+ {% for x in r.pending_tasks[:2] %}
+
+ | {{ x.description }} |
+
+ {% endfor %}
+
+
{% if r.pending_tasks|length > 2 %}
{% endif %}
@@ -145,11 +176,20 @@
-
- {% for x in r.pending_tasks %}
- - {{ x.description }}
- {% endfor %}
-
+
+
+
+ | Task Description |
+
+
+
+ {% for x in r.pending_tasks %}
+
+ | {{ x.description }} |
+
+ {% endfor %}
+
+
{% endif %}
|