79 lines
2.5 KiB
HTML
79 lines
2.5 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">Header</div>
|
|
<div class="panel-body">
|
|
{% if mnts %}
|
|
<ul>
|
|
<li><a href="{% url "whoisdb:mnt-create" %}">Create new Maintainer</a></li>
|
|
<li><a href="{% url "whoisdb:contact-create" %}">Create new Role/Person</a></li>
|
|
<li><a href="">Request resources</a></li>
|
|
{% if netblocks %}
|
|
<li><a href="{% url "whoisdb:inetnum-create" %}">Create Subnet</a></li>
|
|
{% endif %}
|
|
{% if asblocks %}
|
|
<li><a href="">Create AS</a></li>
|
|
<li><a href="">Create ASblock</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
|
|
You have the following Maintainers associated with you
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Handle</th>
|
|
<th>Type</th>
|
|
<th>Name?</th>
|
|
<th>Contact</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% 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="mnt" %}
|
|
{% endfor %}
|
|
{% for asnumber in asnumbers %}
|
|
{% include "whoisdb/handle_table_row.html" with obj=asnumber objType="AS Number" prefix="contact" %}
|
|
{% endfor %}
|
|
{% for netblock in netblocks %}
|
|
{% include "whoisdb/handle_table_row.html" with obj=netblock objType="IP Netblock" prefix="inetnum" %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
{% else %}
|
|
You don't have a maintainer! Start by creating a Maintainer and a Person Object!
|
|
|
|
<form action="{% url "whoisdb:dashboard" %}" method="post">
|
|
{% csrf_token %}
|
|
<h3>Maintainer Object</h3>
|
|
<small>This object will be used to identify resources you are allowed
|
|
to edit via your maintainer</small>
|
|
{{ mntForm | crispy }}
|
|
|
|
<h3>Person Object</h3>
|
|
<small>This object will be used to identify yourself as a person to other people, used for your maintainer object</small>
|
|
{{ contactForm | crispy }}
|
|
|
|
<button type="submit" class="btn btn-primary">Create</button>
|
|
</form>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|