mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 07:47:42 +02:00
24 lines
845 B
HTML
24 lines
845 B
HTML
{% extends 'base/base.html' %}
|
|
{% load static %}
|
|
|
|
{% block title %}
|
|
Update Target
|
|
{% endblock title %}
|
|
|
|
|
|
{% block custom_js_css_link %}
|
|
<script src="{% static 'plugins/notification/snackbar/snackbar.min.js' %}"></script>
|
|
<link href="{% static 'plugins/notification/snackbar/snackbar.min.css' %}" rel="stylesheet" type="text/css">
|
|
{% endblock custom_js_css_link %}
|
|
|
|
{% block main_content %}
|
|
{% include 'target/_items/domain_form.html' with button_title="Update" widget_title="Update Target" form_action="update" %}
|
|
{% endblock main_content %}
|
|
|
|
|
|
{% block page_level_script %}
|
|
<script src="{% static 'assets/js/scrollspyNav.js' %}"></script>
|
|
<script src="{% static 'plugins/jquery-step/jquery.steps.min.js' %}"></script>
|
|
<script src="{% static 'plugins/jquery-step/custom-jquery.steps.js' %}"></script>
|
|
{% endblock page_level_script %}
|