summaryrefslogtreecommitdiff
path: root/tuskar_ui/infrastructure/templates/infrastructure/overview/deployment_initialize.html
blob: af29031e4f140702657ca11592754e30c88063bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "infrastructure/overview/deployment_base.html" %}

{% load i18n %}
{% load url from future%}

{% block deployment-icon %}fa-exclamation-triangle{% endblock %}

{% block deployment-title %}{% trans "Initialization Needed" %}{% endblock %}

{% block deployment-info %}
<p>{% trans "Your OpenStack cloud is successfully deployed. Before using the cloud you must now initialize it." %}</p>
{% endblock %}

{% block deployment-buttons %}
  {{ block.super }}
  <a href="{% url 'horizon:infrastructure:overview:post_deploy_init' %}"
     class="btn btn-primary ajax-modal">
     <i class="fa fa-lg fa-cogs"></i>
     {% trans "Initialize" %}
  </a>
{% endblock %}