31 lines
		
	
	
		
			933 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			933 B
		
	
	
	
		
			HTML
		
	
	
	
| {% extends "base.html" %}
 | |
| 
 | |
| {% load crispy_forms_tags %}
 | |
| {% load handletags %}
 | |
| 
 | |
| {% block content %}
 | |
| <div class="row">
 | |
| 	<div class="col-sm-12">
 | |
| 		<div class="panel panel-default">
 | |
| 			<div class="panel-heading">Whois Database Objects</div>
 | |
| 			<div class="panel-body">
 | |
| 				<h3>Create Database Objects</h3>
 | |
| 				<ul>
 | |
| 					<li><a href="{% url "whoisdb:maintainer-create" %}">Create new Maintainer</a></li>
 | |
| 					<li><a href="{% url "whoisdb:contact-create" %}">Create new Role/Person</a></li>
 | |
| 					<li><a href="{% url "rrequests:dashboard" %}">Request resources</a></li>
 | |
| 					{% if netblocks %}
 | |
| 					<li><a href="{% url "whoisdb:inetnum-create" %}">Create Subnet</a></li>
 | |
| 					{% endif %}
 | |
| 					{% if asblocks %}
 | |
| 					<li><a href="{% url "whoisdb:asnumber-create" %}">Create AS</a></li>
 | |
| 					<li><a href="{% url "whoisdb:asblock-create" %}">Create ASblock</a></li>
 | |
| 					{% endif %}
 | |
| 				</ul>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</div>
 | |
| </div>
 | |
| {% endblock %}
 | |
| 
 |