37 lines
2.1 KiB
HTML
37 lines
2.1 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}{% if entry %}Edytuj Regex Host{% else %}Nowy Regex Host{% endif %} - /etc/hosts Manager{% endblock %}
|
|
{% block content %}
|
|
<h2>{% if entry %}Edytuj Regex Host{% else %}Nowy Regex Host{% endif %}</h2>
|
|
<form method="post">
|
|
<div class="form-group">
|
|
<label for="cidr_range">CIDR Range</label>
|
|
<input type="text" class="form-control" id="cidr_range" name="cidr_range" value="{% if entry %}{{ entry.cidr_range }}{% endif %}" placeholder="np. 10.87.200.0/27" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="gateway_ip">Gateway IP</label>
|
|
<input type="text" class="form-control" id="gateway_ip" name="gateway_ip" value="{% if entry %}{{ entry.gateway_ip }}{% endif %}">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="gateway_hostname">Gateway Hostname</label>
|
|
<input type="text" class="form-control" id="gateway_hostname" name="gateway_hostname" value="{% if entry %}{{ entry.gateway_hostname }}{% endif %}">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="domain_suffix">Domain Suffix</label>
|
|
<input type="text" class="form-control" id="domain_suffix" name="domain_suffix" value="{% if entry %}{{ entry.domain_suffix }}{% else %}domain.com{% endif %}">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="host_prefix">Host Prefix</label>
|
|
<input type="text" class="form-control" id="host_prefix" name="host_prefix" value="{% if entry %}{{ entry.host_prefix }}{% else %}ip{% endif %}">
|
|
</div>
|
|
<div class="form-group form-check">
|
|
<input type="checkbox" class="form-check-input" id="use_gateway_ip" name="use_gateway_ip" {% if entry and entry.use_gateway_ip %}checked{% endif %}>
|
|
<label class="form-check-label" for="use_gateway_ip">Użyj Gateway IP</label>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="comment">Komentarz</label>
|
|
<input type="text" class="form-control" id="comment" name="comment" value="{% if entry %}{{ entry.comment }}{% endif %}">
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">{% if entry %}Zapisz zmiany{% else %}Utwórz{% endif %}</button>
|
|
</form>
|
|
{% endblock %}
|