{% extends 'base/base.html' %} {% load static %} {% block title %} Add Organization {% endblock title %} {% block custom_js_css_link %} {% endblock custom_js_css_link %} {% block breadcrumb_title %} {% endblock breadcrumb_title %} {% block page_title %} Add Organization {% endblock page_title %} {% block main_content %}

Organizations can be used to bundle the targets, an organization can have multiple targets. You will be able to scan the organizations just like the targets, but scanning the organization will allow you to scan all the targets within the organization together.

{% csrf_token %}
{{ form.name }} {% if form.errors %}
{{ form.errors.name|striptags }}
{% endif %}
{{ form.description }}
{{form.domains}} {% if form.errors.domains %}

{{ form.errors.domains|striptags }}

{% endif %}
{% endblock main_content %} {% block page_level_script %} {% endblock page_level_script %}