mybuddy/core/templates/timeline/timeline.html

14 lines
371 B
HTML

{% extends 'babybuddy/page.html' %}
{% load cards i18n static %}
{% block title %}
{% trans "Timeline" %}
{% endblock %}
{% block breadcrumbs %}
<li class="breadcrumb-item fw-bold">{% trans "Timeline" %}</li>
{% endblock %}
{% block content %}
<div class="row">
<div class="col">{% include 'timeline/_timeline.html' %}</div>
</div>
{% endblock %}