{% extends "framework_modern.html" %} {% block content %} {% block action_modals %} {% include "modals/objects/edit_user_modal.html" %} {% include "modals/objects/edit_password_modal.html" %} {% include "modals/collections/new_prediction_setting_modal.html" %} {% include "modals/objects/manage_api_token_modal.html" %} {% include "modals/objects/generic_delete_modal.html" %} {% endblock action_modals %}

{{ user.username }}

On this page you can modify your account or set preferences such as prediction settings.

Default Package
{% if meta.available_groups|length > 0 %}
Groups
{% endif %}
Current Prediction Setting
{% with setting_to_render=user.default_setting can_be_default=False %} {% include "objects/setting_template.html" %} {% endwith %}
Other Prediction Settings
{% for setting in meta.available_settings %} {% if setting != user.default_setting %} {% with setting_to_render=setting can_be_default=True %} {% include "objects/setting_template.html" %} {% endwith %} {% endif %} {% endfor %}
{% endblock content %}