mybuddy/core/templates/timeline/timeline.html

17 lines
399 B
HTML
Raw Normal View History

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