refactor
This commit is contained in:
12
templates/edit_local_hosts.html
Normal file
12
templates/edit_local_hosts.html
Normal file
@ -0,0 +1,12 @@
|
||||
{% 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 %}
|
Reference in New Issue
Block a user