49 lines
1.7 KiB
HTML
49 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>/etc/hosts Files Management</title>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; background: #f1f1f1; padding: 20px; }
|
|
.container { max-width: 800px; margin: 0 auto; background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px #ccc; }
|
|
table { width: 100%; border-collapse: collapse; margin-bottom: 1em; }
|
|
table th, table td { border: 1px solid #ccc; padding: 8px; text-align: left; }
|
|
table th { background: #f7f7f7; }
|
|
.links { text-align: center; margin-top: 10px; }
|
|
.links a { color: #007bff; text-decoration: none; margin: 0 10px; }
|
|
.links a:hover { text-decoration: underline; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Your /etc/hosts Files</h1>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Title</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for file in files %}
|
|
<tr>
|
|
<td>{{ file.id }}</td>
|
|
<td>{{ file.title }}</td>
|
|
<td>
|
|
<a href="{{ url_for('edit_hosts_file', file_id=file.id) }}">Edit</a> |
|
|
<a href="{{ url_for('deploy_hosts_file', file_id=file.id) }}">Deploy</a> |
|
|
<a href="{{ url_for('delete_hosts_file', file_id=file.id) }}">Delete</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
<div class="links">
|
|
<a href="{{ url_for('new_hosts_file') }}">Create /etc/hosts File</a> |
|
|
<a href="{{ url_for('dashboard') }}">Back to Dashboard</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|