{% extends 'projectroles/base.html' %} {% load rules %} {% load projectroles_common_tags %} {% load crispy_forms_filters %} {% block title %} {% get_django_setting 'ENABLE_OIDC' as enable_oidc %} {% if invite and enable_oidc %}Login or{% endif %} {% if object %}Update{% else %}Create{% endif %} Local User {% endblock title %} {% block projectroles %} {% get_django_setting 'ENABLE_OIDC' as enable_oidc %} {% get_django_setting 'PROJECTROLES_TEMPLATE_INCLUDE_PATH' as template_include_path %}

{% if invite and enable_oidc %}Login or{% endif %} {% if object %}Update{% else %}Create{% endif %} Local User

{% if invite and enable_oidc %}

Please log in if you have a single sign-on account.

{% url 'projectroles:invite_process_login' secret=invite.secret as oidc_redirect_url %} {% include 'projectroles/_login_oidc.html' %}

{% endif %}
{% csrf_token %} {{ form | crispy }}
{% endblock projectroles %}