{% extends "base.html" %} {% 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 %} {# a required macro defining text to show on the unlogged in index page #} {% 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() %} {% 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() %} {% endmacro %} #} {# an optional macro defining an element to show for lost OTP tokens #} {# {% macro lost_otp_token() %} {% endmacro %} #}