##// END OF EJS Templates
resolved merge conflicts
resolved merge conflicts

File last commit:

r346:ba295fe54b17
r359:88694438076c merge
Show More
pedestal_conf_edit.html
26 lines | 822 B | text/html | HtmlDjangoLexer
{% 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</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 %}