mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 15:57:44 +02:00
56 lines
1.3 KiB
HTML
56 lines
1.3 KiB
HTML
{% extends 'base/base.html' %}
|
|
{% load static %}
|
|
|
|
{% block title %}
|
|
Update Engine Type
|
|
{% endblock title %}
|
|
|
|
|
|
{% block custom_js_css_link %}
|
|
<link rel="stylesheet" type="text/css" href="{% static 'assets/css/forms/switches.css' %}">
|
|
<link rel="stylesheet" type="text/css" href="{% static 'assets/css/custom.css' %}">
|
|
{{ form.media }}
|
|
<style media="screen">
|
|
.ace_editor {
|
|
width:100%;
|
|
height:450px;
|
|
font-size:12px;
|
|
border:1px solid #CCC;
|
|
}
|
|
.django-ace-toolbar{
|
|
display: none;
|
|
}
|
|
</style>
|
|
{% endblock custom_js_css_link %}
|
|
|
|
{% block breadcrumb_title %}
|
|
Update Engine
|
|
{% endblock breadcrumb_title %}
|
|
|
|
{% block main_content %}
|
|
<div class="statbox widget box box-shadow">
|
|
<div class="widget-header">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<h4>Update Engine</h4>
|
|
{{ form.errors }}
|
|
{{ form.non_field_errors }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="widget-content widget-content-area">
|
|
<form class="simple-example" method="POST">
|
|
{% csrf_token %}
|
|
{% include "scanEngine/_items/form_engine.html" %}
|
|
<button class="btn btn-primary submit-fn mt-2 float-right" type="submit">Update Engine</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock main_content %}
|
|
|
|
{% block page_level_script %}
|
|
<script src="{% static 'assets/js/scrollspyNav.js' %}"></script>
|
|
<script type="text/javascript">
|
|
</script>
|
|
{% endblock page_level_script %}
|