mybuddy/core/templates/timeline/timeline.html

14 lines
371 B
HTML
Raw Normal View History

2021-08-22 03:42:29 +00:00
{% extends 'babybuddy/page.html' %}
{% load cards i18n static %}
{% block title %}
{% trans "Timeline" %}
{% endblock %}
2021-08-22 03:42:29 +00:00
{% block breadcrumbs %}
<li class="breadcrumb-item fw-bold">{% trans "Timeline" %}</li>
2021-08-22 03:42:29 +00:00
{% endblock %}
{% block content %}
2021-08-29 20:50:22 +00:00
<div class="row">
<div class="col">{% include 'timeline/_timeline.html' %}</div>
2021-08-29 20:50:22 +00:00
</div>
2021-08-22 03:42:29 +00:00
{% endblock %}