diff --git a/core/templates/core/child_list.html b/core/templates/core/child_list.html
index b8a75ead..779e24cb 100644
--- a/core/templates/core/child_list.html
+++ b/core/templates/core/child_list.html
@@ -9,7 +9,6 @@
- # |
First Name |
Last Name |
Birth Date |
@@ -19,8 +18,7 @@
{% for child in object_list %}
- {{ child.id }} |
- {{ child.first_name }} |
+ {{ child.first_name }} |
{{ child.last_name }} |
{{ child.birth_date }} |
@@ -49,7 +47,7 @@
|
{% empty %}
- No children found. |
+ No children found. |
{% endfor %}
diff --git a/core/templates/core/diaperchange_list.html b/core/templates/core/diaperchange_list.html
index f7443247..986d3bc3 100644
--- a/core/templates/core/diaperchange_list.html
+++ b/core/templates/core/diaperchange_list.html
@@ -9,7 +9,6 @@
- # |
Child |
Time |
Wet |
@@ -21,8 +20,7 @@
{% for change in object_list %}
- {{ change.id }} |
- {{ change.child }} |
+ {{ change.child }} |
{{ change.time }} |
{{ change.wet }} |
{{ change.solid }} |
@@ -47,7 +45,7 @@
{% empty %}
- No diaper changes found. |
+ No diaper changes found. |
{% endfor %}
diff --git a/core/templates/core/feeding_list.html b/core/templates/core/feeding_list.html
index a54f747b..19a00e5d 100644
--- a/core/templates/core/feeding_list.html
+++ b/core/templates/core/feeding_list.html
@@ -9,7 +9,6 @@
- # |
Child |
Date |
Duration |
@@ -22,8 +21,7 @@
{% for feeding in object_list %}
- {{ feeding.id }} |
- {{ feeding.child }} |
+ {{ feeding.child }} |
{{ feeding.start }} |
{{ feeding.duration }} |
{{ feeding.type }} |
@@ -49,7 +47,7 @@
{% empty %}
- No feedings found. |
+ No feedings found. |
{% endfor %}
diff --git a/core/templates/core/note_list.html b/core/templates/core/note_list.html
index 6d4c4651..4e213d9b 100644
--- a/core/templates/core/note_list.html
+++ b/core/templates/core/note_list.html
@@ -9,7 +9,6 @@
- # |
Child |
Note |
Time |
@@ -19,8 +18,7 @@
{% for note in object_list %}
- {{ note.id }} |
- {{ note.child }} |
+ {{ note.child }} |
{{ note.note }} |
{{ note.time }} |
@@ -43,7 +41,7 @@
|
{% empty %}
- No notes found. |
+ No notes found. |
{% endfor %}
diff --git a/core/templates/core/sleep_list.html b/core/templates/core/sleep_list.html
index a68e1a14..d74e2857 100644
--- a/core/templates/core/sleep_list.html
+++ b/core/templates/core/sleep_list.html
@@ -9,7 +9,6 @@
- # |
Child |
Start |
End |
@@ -20,8 +19,7 @@
{% for sleep in object_list %}
- {{ sleep.id }} |
- {{ sleep.child }} |
+ {{ sleep.child }} |
{{ sleep.start }} |
{{ sleep.end }} |
{{ sleep.duration }} |
@@ -45,7 +43,7 @@
{% empty %}
- No sleep entries found. |
+ No sleep entries found. |
{% endfor %}
diff --git a/core/templates/core/tummytime_list.html b/core/templates/core/tummytime_list.html
index 7eb5da49..82f6b6be 100644
--- a/core/templates/core/tummytime_list.html
+++ b/core/templates/core/tummytime_list.html
@@ -9,7 +9,6 @@
- # |
Child |
Start |
End |
@@ -21,8 +20,7 @@
{% for tummytime in object_list %}
- {{ tummytime.id }} |
- {{ tummytime.child }} |
+ {{ tummytime.child }} |
{{ tummytime.start }} |
{{ tummytime.end }} |
{{ tummytime.duration }} |
@@ -47,7 +45,7 @@
{% empty %}
- No tummy time entries found. |
+ No tummy time entries found. |
{% endfor %}