{% extends "dashboard/base.html" %} {% block inline_css %} {{block.super}} {% include 'dashboard/api_key.css' %} {% endblock %} {% block title %} {{block.super}} > Edit Profile {% endblock %} {% block dashboard_content %}
{% csrf_token %}
Display Name:
{{ profile_form.display_name }} {{ profile_form.display_name.errors }}
Default License:
You can set a default license that will govern any new submissions you upload (unless otherwise specified in the upload form).

Your current default license is {% include 'license/license_link.html' with license=profile.default_license %}.

The 'use default' option refers to the site-wide default license, which is {% include 'license/license_link.html' with license=site_default_license %}.
Allow commercial use?
{{ license_form.allow_commercial_use }} {{ license_form.allow_commercial_use.errors }}

Allow modifications?
{{ license_form.allow_modifications.errors }} {{ license_form.allow_modifications }}
Default Visibility:
You can set a default for the Visibily option for new submissions you upload.

This determines whether other people can see your images and results.
Default Publicly Visible setting {{ profile_form.default_publicly_visible }} {{ profile_form.default_publicly_visible.errors }}

{% endblock %}