{% extends "sphene/community/base.html" %} {% load i18n %} {% load sph_extras %} {% block content %} {% trans "Modifying user profile for" %} {% sph_html_user profile_user %}

{% csrf_token %} {% for field in form %} {% if field.field.is_separator %} {% if field.help_text %} {% endif %} {% else %} {% endif %} {% endfor %}
{% trans "Username:" %} {{ profile_user.username }}
{{ field.label }}
{{ field.help_text }}
{% if field.errors %}{{ field.errors }}{% endif %}{{ field }}{% if field.help_text %}
{{ field.help_text }}{% endif %}
{% if is_sphboard %}
{% load sphboard_extras %} {% show_active_monitors profile_user %} {% endif %}
{% endblock %}