13 lines
485 B
HTML
13 lines
485 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Edytuj lokalny Hosts - /etc/hosts Manager{% endblock %}
|
|
{% block content %}
|
|
<h2>Edytuj lokalny Hosts</h2>
|
|
<form method="post">
|
|
<div class="mb-3">
|
|
<label for="hosts_content" class="form-label">Treść hosts</label>
|
|
<textarea class="form-control" id="hosts_content" name="hosts_content" rows="15" required>{{ content }}</textarea>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Zapisz zmiany</button>
|
|
</form>
|
|
{% endblock %}
|