hosts_app/templates/deploy_hosts_file.html
Mateusz Gruszczyński c6f865bbb8 refactor web interface
2025-02-25 10:53:13 +01:00

33 lines
997 B
HTML

{% extends "base.html" %}
{% block title %}Deploy Hosts File - /etc/hosts Manager{% endblock %}
{% block extra_css %}
{{ super() }}
<style>
.tooltip-inner {
max-width: 300px;
text-align: left;
}
</style>
{% endblock %}
{% block content %}
<div class="card mb-4">
<div class="card-header">
<h2>Wgraj plik hosts: "{{ file.title }}"</h2>
</div>
<div class="card-body">
<form method="post">
<div class="mb-3">
<label class="form-label">Wybierz serwery do wgrania:</label>
{% for host in hosts %}
<div class="form-check">
<input class="form-check-input" type="checkbox" name="hosts" value="{{ host.id }}" id="host{{ host.id }}">
<label class="form-check-label" for="host{{ host.id }}">{{ host.hostname }} ({{ host.type }})</label>
</div>
{% endfor %}
</div>
<button type="submit" class="btn btn-success">Wgraj plik hosts do serwera</button>
</form>
</div>
</div>
{% endblock %}