##// END OF EJS Templates
Experiment detail view update
Experiment detail view update

File last commit:

r350:c2b9b4d3a22d
r365:24b24259841b
Show More
pedestal_dev_conf_edit.html
26 lines | 826 B | text/html | HtmlDjangoLexer
/ apps / pedestal_dev / templates / pedestal_dev_conf_edit.html
{% extends "dev_conf_edit.html" %}
{% load bootstrap4 %}
{% load static %}
{% block extra-head %}
<style type="text/css">
/* show the move cursor as the user moves the mouse over the panel header.*/
.panel-default { cursor: move; }
</style>
<script src="{% static 'js/jquery-ui.min.js' %}"></script>
{% endblock %}
{% block content %}
<form class="form" method="post">
{% csrf_token %}
<h2>Pedestal Dev</h2>
{% bootstrap_form form layout='horizontal' size='medium' %}
<div style="clear: both;"></div>
<br>
<div class="pull-right">
<button type="button" class="btn btn-primary" onclick="{% if previous %}window.location.replace('{{ previous }}');{% else %}history.go(-1);{% endif %}">Cancel</button>
<button type="submit" class="btn btn-primary">{{button}}</button>
</div>
</form>
{% endblock %}