Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 5ba31601a131b8f6ee9fe7da544b8eaf > files > 82

django-profile-0.6-0.3.20090813svnr420.fc14.noarch.rpm

{% extends "userprofile/base_2col.html" %}
{% load i18n %}

{% block title %}{% trans "Edit your personal information" %}{% endblock %}
{% block robots %}noindex,nofollow{% endblock %}

{% block extracss %}
	<link rel="stylesheet" href="{{ MEDIA_URL }}userprofile/css/ui.datepicker.css" type="text/css" />
{% endblock %}

{% block extrajs %}
<script type="text/javascript" src="{{ MEDIA_URL }}userprofile/js/ui.datepicker.js"></script>
<script type="text/javascript" src="{{ MEDIA_URL }}userprofile/js/jquery.personal.js"></script>
{% endblock %}

{% block userprofile_navigation %}
{% include "userprofile/menu.html" %}
{% endblock %}

{% block userprofile_content %}
	<form class="personal" action="{{ request.path_info }}" method="post" enctype="multipart/form-data">
	<fieldset>
		<legend>{% trans "Edit your personal information" %}</legend>
		{{ form.as_p }}	
	</fieldset>
	<input type="submit" value="{% trans 'Save' %}" />
	</form>
{% endblock %}

{% block userprofile_content_related %}
  <div class="box">
    <h3>{% trans "Personal information" %}</h3>
    <p>{% trans "Insert some information about you" %}.</p>
  </div>
{% endblock %}