mirror of https://github.com/snachodog/mybuddy.git
17 lines
390 B
HTML
17 lines
390 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 %}
|