{% extends "vault/base.html" %} {% load i18n static %} {% block title %}{% trans 'Project Created' %}{% endblock %} {% block content_title %}{% trans 'Project Created' %}{% endblock %} {% block css %} {% endblock %} {% block breadcrumb %} {% trans 'Save the information below to access the services' %} {% endblock %} {% block content %}

{% trans 'Credentials' %}

{% trans 'Project' %} {{ project_info.project_name }}
{% trans 'Username' %} {{ project_info.user_name }}
{% trans 'Password' %} {{ project_info.user_password }}
{% trans 'Authentication URL' %} {{ project_info.auth_url }}

{% trans 'Object Storage Endpoints' %}

Admin URL {{ project_info.endpoints.object_store.adminURL }}
Public URL {{project_info.endpoints.object_store.publicURL }}
Internal URL {{ project_info.endpoints.object_store.internalURL }}
{% endblock %} {% block js_bottom %} {{ block.super }} {% endblock %}