microblog/app/templates/edit_profile.html

8 lines
160 B
HTML
Raw Normal View History

{% extends "base.html" %}
2017-09-27 06:43:28 +00:00
{% import "bootstrap_wtf.html" as wtf %}
{% block content %}
<h1>Edit Profile</h1>
2017-09-27 06:43:28 +00:00
{{ wtf.quick_form(form) }}
{% endblock %}