2019-04-14 15:40:08 +00:00
|
|
|
{% load i18n %}
|
|
|
|
|
2021-08-29 21:09:01 +00:00
|
|
|
<div class="child-actions btn-group btn-group-lg border rounded border-light bg-dark center-block" role="group" aria-label="{% trans "Child actions" %}">
|
2017-11-06 21:24:21 +00:00
|
|
|
|
|
|
|
{% if perms.core.view_child %}
|
2021-08-29 21:09:01 +00:00
|
|
|
<a href="{% url 'dashboard:dashboard-child' object.slug %}" class="btn" title="{% trans "Dashboard" %}">
|
2021-08-30 01:58:25 +00:00
|
|
|
<i class="icon-dashboard" aria-hidden="true"></i>
|
2017-11-06 21:24:21 +00:00
|
|
|
</a>
|
2021-08-29 21:09:01 +00:00
|
|
|
<a href="{% url 'core:child' object.slug %}" class="btn" title="{% trans "Timeline" %}">
|
2021-08-30 01:58:25 +00:00
|
|
|
<i class="icon-timeline" aria-hidden="true"></i>
|
2021-08-29 21:09:01 +00:00
|
|
|
</a>
|
2017-11-06 21:24:21 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<div class="btn-group" role="group">
|
|
|
|
<button id="reports-dropdown"
|
2021-08-29 21:09:01 +00:00
|
|
|
class="btn dropdown-toggle"
|
|
|
|
title="{% trans "Reports" %}"
|
2017-11-06 21:24:21 +00:00
|
|
|
type="button"
|
|
|
|
data-toggle="dropdown"
|
|
|
|
aria-haspopup="true"
|
2021-08-30 01:58:25 +00:00
|
|
|
aria-expanded="false"><i class="icon-graph" aria-hidden="true"></i></button>
|
2017-11-06 21:24:21 +00:00
|
|
|
<div class="dropdown-menu" aria-labelledby="reports-dropdown">
|
2020-01-26 22:12:27 +00:00
|
|
|
<a class="dropdown-item" href="{% url 'reports:report-diaperchange-amounts-child' object.slug %}">{% trans "Diaper Change Amounts" %}</a>
|
2019-04-14 15:40:08 +00:00
|
|
|
<a class="dropdown-item" href="{% url 'reports:report-diaperchange-types-child' object.slug %}">{% trans "Diaper Change Types" %}</a>
|
|
|
|
<a class="dropdown-item" href="{% url 'reports:report-diaperchange-lifetimes-child' object.slug %}">{% trans "Diaper Lifetimes" %}</a>
|
2019-05-29 17:05:30 +00:00
|
|
|
<a class="dropdown-item" href="{% url 'reports:report-feeding-amounts-child' object.slug %}">{% trans "Feeding Amounts" %}</a>
|
2019-04-14 15:40:08 +00:00
|
|
|
<a class="dropdown-item" href="{% url 'reports:report-feeding-duration-child' object.slug %}">{% trans "Feeding Durations (Average)" %}</a>
|
|
|
|
<a class="dropdown-item" href="{% url 'reports:report-sleep-pattern-child' object.slug %}">{% trans "Sleep Pattern" %}</a>
|
|
|
|
<a class="dropdown-item" href="{% url 'reports:report-sleep-totals-child' object.slug %}">{% trans "Sleep Totals" %}</a>
|
|
|
|
<a class="dropdown-item" href="{% url 'reports:report-weight-weight-child' object.slug %}">{% trans "Weight" %}</a>
|
2017-11-06 21:24:21 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% if perms.core.change_child %}
|
2021-08-29 21:09:01 +00:00
|
|
|
<a class="btn"
|
2017-12-03 21:52:27 +00:00
|
|
|
href="{% url 'core:child-update' object.slug %}"
|
2021-08-29 21:09:01 +00:00
|
|
|
title="{% trans "Edit" %}"
|
2021-08-30 01:58:25 +00:00
|
|
|
role="button"><i class="icon-update" aria-hidden="true"></i></a>
|
2017-11-06 21:24:21 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if perms.core.delete_child %}
|
2021-08-29 21:09:01 +00:00
|
|
|
<a class="btn"
|
2017-12-03 21:52:27 +00:00
|
|
|
href="{% url 'core:child-delete' object.slug %}"
|
2021-08-29 21:09:01 +00:00
|
|
|
title="{% trans "Delete" %}"
|
2021-08-30 01:58:25 +00:00
|
|
|
role="button"><i class="icon-delete" aria-hidden="true"></i></a>
|
2017-11-06 21:24:21 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
</div>
|