The current dashboard plugin's code for deploying a selected application is outdated. This patch updates it to work with the current API. Also, here is a link to a screenshot of what the form for deployment looks like: http://pasteboard.co/9PWI61bJd.png, and what the details page looks like after successful deployment of the application: http://pasteboard.co/9Q2yQELb7.png Co-Authored-By: zhurong <aaronzhu1121@gmail.com> Change-Id: I0abed414ab7e00d39207050981a736be71f54bda Closes-Bug: #1605073
11 lines
320 B
HTML
11 lines
320 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Deploy Application" %}{% endblock %}
|
|
|
|
{% block page_header %}
|
|
{% include 'horizon/common/_page_header.html' with title=_('Deploy Application') %}
|
|
{% endblock page_header %}
|
|
|
|
{% block main %}
|
|
{% include 'applications/_launch.html' %}
|
|
{% endblock %} |