30 lines
634 B
HTML
30 lines
634 B
HTML
{% extends 'syspanel_base.html' %}
|
|
|
|
{% block sidebar %}
|
|
{% with current_sidebar="tenants" %}
|
|
{{block.super}}
|
|
{% endwith %}
|
|
{% endblock %}
|
|
|
|
{% block page_header %}
|
|
{% include "_page_header.html" with title="Create Tenant" %}
|
|
{% endblock page_header %}
|
|
|
|
{% block syspanel_main %}
|
|
<div class="dash_block">
|
|
<div class="left">
|
|
{% include 'django_openstack/syspanel/_create_tenant_form.html' %}
|
|
</div>
|
|
|
|
<div class="right">
|
|
<h3>Description:</h3>
|
|
<p>From here you can create a new tenant (aka project) to organize users.</p>
|
|
</div>
|
|
<div class="clear"> </div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|