PonyConf/cfp/templates/cfp/volunteer_profile.html

28 lines
734 B
HTML

{% extends 'base.html' %}
{% load crispy_forms_tags %}
{% load i18n %}
{% block volunteerstab %} class="active"{% endblock %}
{% block content %}
<div class="page-header">
<h1>{% trans "Profile" %}</h1>
</div>
<div class="row">
<div class="col-md-12">
<form method="POST" class="form-horizontal col-md-8 col-md-offset-2">
{% csrf_token %}
{{ form|crispy }}
<div class="col-md-12 text-center">
<button type="submit" class="btn btn-primary text-center">{% trans "Save" %} <i class="fa fa-check"></i></button>
<a class="btn btn-default" href="{% url 'volunteer-dashboard' volunteer_token=volunteer.token %}">{% trans "Cancel" %}</a>
</div>
</form>
</div>
</div>
{% endblock %}