mirror of https://github.com/snachodog/mybuddy.git
15 lines
392 B
HTML
15 lines
392 B
HTML
{% extends 'babybuddy/page.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Site Settings" %}{% endblock %}
|
|
|
|
{% block breadcrumbs %}
|
|
<li class="breadcrumb-item">{% trans "Site" %}</li>
|
|
<li class="breadcrumb-item active">{% trans "Settings" %}</li>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{% trans "Site Settings" %}</h1>
|
|
{% include 'babybuddy/form.html' %}
|
|
{% endblock %}
|