mybuddy/babybuddy/templates/babybuddy/user_password_form.html

15 lines
417 B
HTML
Raw Normal View History

2017-12-02 21:20:15 +00:00
{% extends 'babybuddy/page.html' %}
{% load i18n widget_tweaks %}
2017-12-02 21:20:15 +00:00
{% block title %}{% trans "Change Password" %}{% endblock %}
2017-12-02 21:20:15 +00:00
{% block breadcrumbs %}
<li class="breadcrumb-item">{% trans "User" %}</li>
<li class="breadcrumb-item active">{% trans "Change Password" %}</li>
2017-12-02 21:20:15 +00:00
{% endblock %}
{% block content %}
<h1>{% trans "Change Password" %}</h1>
2017-12-02 21:20:15 +00:00
{% include 'babybuddy/form.html' %}
{% endblock %}