{% extends "base.html" %} {% load crispy_forms_tags %} {% load handletags %} {% block content %}
Whois Database Objects
{% if mnts %}

You can create new database objects here.

Create new Maintainer, create new Contact, request resources{% if netblocks %}, create Subnet{% endif %}{% if asblocks %}, create AS, create ASblock{% endif %}{% if netblocks and asblocks %}, create AS / Subnet pair{% endif %}

{% for mnt in mnts %} {% include "whoisdb/handle_table_row.html" with obj=mnt objType="Maintainer" prefix="mnt" %} {% endfor %} {% for contact in contacts %} {% include "whoisdb/handle_table_row.html" with obj=contact objType="Contact / Role" prefix="contact" %} {% endfor %} {% for asblock in asblocks %} {% include "whoisdb/handle_table_row.html" with obj=asblock objType="AS Block" prefix="asblock" %} {% endfor %} {% for asnumber in asnumbers %} {% include "whoisdb/handle_table_row.html" with obj=asnumber objType="AS Number" prefix="asnumber" %} {% endfor %} {% for netblock in netblocks %} {% include "whoisdb/handle_table_row.html" with obj=netblock objType="IP Netblock" prefix="inetnum" %} {% endfor %}
Handle Type Name Resource Maintained Contact Actions
{% else %} You don't have a maintainer! Start by creating a Maintainer and a Person Object!
{% csrf_token %}

Maintainer Object

This object will be used to identify resources you are allowed to edit via your maintainer {{ mntForm | crispy }}

Person Object

This object will be used to identify yourself as a person to other people, used for your maintainer object {{ contactForm | crispy }}
{% endif %}
{% endblock %}