{% extends "closedverse_main/layout.html" %} {% block main-body %}{% load closedverse_user %}{% load closedverse_tags %} {% user_sidebar request user profile 7 False %}

Change settings for {{ user.username }}

{% for field in user_form %}
  • {% if field.field.widget.input_type == 'checkbox' %}

     

    {{ field }}{{ field.label_tag }} {% elif field.field.widget.input_type == 'number' %}

    {{ field.label_tag }}

    {{ field }} {% elif field.field.widget.input_type == 'select' %}

    {{ field.label_tag }}

    {{ field }}
    {% else %}

    {{ field.label_tag }}

    {{ field }}
    {% endif %}

    {{ field.help_text }}

  • {% endfor %} {% for field in profile_form %}
  • {% if field.field.widget.input_type == 'checkbox' %}

     

    {{ field }}{{ field.label_tag }} {% elif field.field.widget.input_type == 'number' %}

    {{ field.label_tag }}

    {{ field }} {% elif field.field.widget.input_type == 'select' %}

    {{ field.label_tag }}

    {{ field }}
    {% else %}

    {{ field.label_tag }}

    {{ field }}
    {% endif %}

    {{ field.help_text }}

  • {% endfor %}
  • Purge content:

    {% for field in purge_form %} {{ field }}{{ field.label_tag }}

    {{ field.help_text }}

    {% endfor %}
  • {% if accountmatch %}

    Account(s) found with the same IP address.

    {% for accountmatch in accountmatch %} {% endfor %}
    Created Match
    {{ accountmatch.created }} {{ accountmatch.username }}
    {% endif %} {% csrf_token %}
    {% endblock %}