21 lines
338 B
HTML
21 lines
338 B
HTML
|
{% extends "base.html" %}
|
||
|
{% block title %}Subir Circuito{% endblock %}
|
||
|
|
||
|
{% block head %}
|
||
|
{{ super() }}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<div class="row">
|
||
|
<h3>Asignación de 10.6.122.{{ ip }}</h3>
|
||
|
</div>
|
||
|
|
||
|
<div class="row">
|
||
|
<form action="" class="form-horizontal" method="POST">
|
||
|
|
||
|
</form>
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|