mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 15:57:44 +02:00
22 lines
642 B
HTML
22 lines
642 B
HTML
{% extends 'base/base.html' %}
|
|
{% load static %}
|
|
|
|
{% block title %}
|
|
Add target for Recon
|
|
{% endblock title %}
|
|
|
|
|
|
{% block custom_js_css_link %}
|
|
{% endblock custom_js_css_link %}
|
|
|
|
{% block main_content %}
|
|
{% include 'target/_items/domain_form.html' with button_title="Save" widget_title="Add Target" form_action="add" %}
|
|
{% 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 %}
|