The current dashboard plugin's code for creating a new 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 creation looks like when giving the source as app-file: http://pasteboard.co/4M65rOtF8.png, and when giving the source as input: http://pasteboard.co/4M6S5mw5g.png, and what the page after successful creation of the application looks like: http://pasteboard.co/33ESXWTCA.png Co-Authored-By: zhurong <aaronzhu1121@gmail.com> Change-Id: Ide2a7741b71d17b4d2009e6b2c61a48a0c054bf3 Closes-Bug: #1608243
8 lines
183 B
HTML
8 lines
183 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Create Application" %}{% endblock %}
|
|
|
|
{% block main %}
|
|
{% include 'applications/_create.html' %}
|
|
{% endblock %}
|