* removed gender, address and phone number from the forms.

* birthday, first and last name fields will be set to None if you uncheck membership.
This commit is contained in:
2018-05-16 12:40:34 +02:00
parent d67719cc17
commit f2836baae5

View File

@@ -0,0 +1,34 @@
{% extends "base.html" %}
{% load i18n %}
{% block title %}{% trans "Edit Userprofile" %}{% endblock %}
{% block teaser %}<h1>{% trans "Edit Userprofile" %}</h1>{% endblock %}
{% block maincontent %}
<form method="post" action="" enctype="multipart/form-data" class="grid_12 clearfix">
<fieldset>
<legend>{% trans "Edit Userprofile" %}</legend>
{% csrf_token %}
{% include 'form.html' %}
<p class="buttonbar">
<button type="reset"><span class="fa fa-undo"></span> {% trans "Reset" %}</button>
<button type="submit"><span class="fa fa-hdd-o"></span> {% trans "Save" %}</button>
</p>
</fieldset>
</form>
{% endblock %}
{% block javascript %}
$(function() {
$( "#id_birthday" ).datepicker({
changeMonth: true,
changeYear: true,
dateFormat: 'yy-mm-dd',
yearRange: '-50,0',
firstDay: 1
});
});
{% endblock %}
{% block buttonbar %}{% endblock %}