bornhack-website/src/profiles/templates/profile_form.html

13 lines
411 B
HTML
Raw Normal View History

2017-04-13 15:44:46 +00:00
{% extends 'profile_base.html' %}
{% load bootstrap3 %}
{% block profile_content %}
<h4>Update Profile</h4>
<form method="POST">
{% csrf_token %}
{% bootstrap_form form %}
2019-03-26 12:24:23 +00:00
<button type="submit" class="btn btn-success"><i class="fas fa-save"></i> Submit</button>
<a href="{% url 'profiles:detail' %}" class="btn btn-danger"><i class="fas fa-times"></i> Cancel</a>
2017-04-13 15:44:46 +00:00
</form>
{% endblock profile_content %}