{% extends "base.html" %} {% block website %}{{_("openSUSE Accounts")}}{% endblock %} {% set OPENID = 'https://www.opensuse.org/openid/user/%s' %} {% block head %} {% endblock %} {% block navbar %} {% with flashes = get_flashed_messages(with_categories=True) %} {% if flashes %}
{% for category, flash in flashes %}
{{ flash }}
{% endfor %}
{% endif %} {% endwith %} {% endblock %} {% block bodycontent %}
{% block content %}{% endblock %}
{% endblock %} {% block footer %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% macro userlinks() %}
  • {{_("Connect")}} {{ user.username }}
  • {% endblock %} {% macro front_page_blurb() %}

    {{_("Welcome to noggin!")}}

    {{_("This is the open source, community self-service portal for FreeIPA. It allows you to do things like create an account, change your password, manage group membership, and more.")}}

    {% endmacro %} {# an optional macro defining an element to show for editing group details #} {# typically, it used to link to a ticket tracker for an admin to edit a group #} {% macro edit_group_details() %} {% if current_user_is_sponsor and sponsor_form %}
    {{_("Request Change of Details")}}
    {% endif %} {% endmacro %} {# an optional macro defining an element to show for account disable #} {# typically, it used to link to a ticket tracker for an admin to perform the disable #} {% macro request_disable_account() %}
    {{_("Request account deletion")}}
    {% endmacro %}