mybuddy/core/templates/timeline/timeline.html

17 lines
399 B
HTML

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