- {% with messages = get_flashed_messages(category_filter=["danger","success","info"]) %}
- {% if messages %}
-
+{% endblock %}
diff --git a/templates/new_edit_regex_host.html b/templates/new_edit_regex_host.html
index 9e8a0af..e0275ea 100644
--- a/templates/new_edit_regex_host.html
+++ b/templates/new_edit_regex_host.html
@@ -1,106 +1,36 @@
-
-
-
-
-
-
+{% extends "base.html" %}
+{% block title %}{% if entry %}Edytuj Regex Host{% else %}Nowy Regex Host{% endif %} - /etc/hosts Manager{% endblock %}
+{% block content %}
+
+{% endblock %}
diff --git a/templates/register.html b/templates/register.html
index 487fcb9..b164a4a 100644
--- a/templates/register.html
+++ b/templates/register.html
@@ -1,60 +1,21 @@
-
-
-
-
-
Register
- {% with messages = get_flashed_messages(category_filter=["danger","success","info"]) %}
- {% if messages %}
-
- {% for message in messages %}
-
{{ message }}
- {% endfor %}
-
- {% endif %}
- {% endwith %}
-
+{% endblock %}
diff --git a/templates/view_backup.html b/templates/view_backup.html
index a152908..5381bd8 100644
--- a/templates/view_backup.html
+++ b/templates/view_backup.html
@@ -1,33 +1,20 @@
-
-
-
-
-
View Backup
-
-
-
-
-
Backup Preview
- {% if host %}
-
Host: {{ host.hostname }} ({{ host.type }})
- {% else %}
-
Default configuration
- {% endif %}
-
Description: {{ backup.description }}
-
Created at: {{ backup.created_at }}
-
Content:
-
{{ backup.content }}
-
-
-
-
+{% extends "base.html" %}
+{% block title %}Podgląd Backupu - /etc/hosts Manager{% endblock %}
+{% block extra_css %}
+ {{ super() }}
+
+
+{% endblock %}
+{% block content %}
+
Podgląd Backupu
+
Data: {{ backup.created_at.strftime("%Y-%m-%d %H:%M:%S") }}
+
Opis: {{ backup.description }}
+
{{ backup.content | e }}
+
Powrót do listy backupów
+{% endblock %}
+{% block extra_js %}
+ {{ super() }}
+
+
+
+{% endblock %}
diff --git a/templates_old/backups.html b/templates_old/backups.html
new file mode 100644
index 0000000..38e8f05
--- /dev/null
+++ b/templates_old/backups.html
@@ -0,0 +1,149 @@
+
+
+
+
+
Backups
+
+
+
+
+
Backups
+
+
+
+
+
+ ID |
+ Host |
+ Created At |
+ Description |
+ Actions |
+
+ {% for backup in backups %}
+
+ {{ backup.id }} |
+ {{ backup.host.hostname if backup.host else 'Default Configuration' }} |
+ {{ backup.created_at }} |
+ {{ backup.description or '' }} |
+
+
+ View
+
+
+ Restore
+
+
+
+ |
+
+ {% endfor %}
+
+
+
+
+
diff --git a/templates_old/change_password.html b/templates_old/change_password.html
new file mode 100644
index 0000000..f035ffd
--- /dev/null
+++ b/templates_old/change_password.html
@@ -0,0 +1,58 @@
+
+
+
+
+
Change Password
+
+
+
+
+
Change Password
+ {% with messages = get_flashed_messages(category_filter=["danger","success","info"]) %}
+ {% if messages %}
+
+ {% for message in messages %}
+
{{ message }}
+ {% endfor %}
+
+ {% endif %}
+ {% endwith %}
+
+
+
+
+
diff --git a/templates_old/clear_hosts.html b/templates_old/clear_hosts.html
new file mode 100644
index 0000000..8d36877
--- /dev/null
+++ b/templates_old/clear_hosts.html
@@ -0,0 +1,32 @@
+
+
+
+
+
Clear Hosts Files
+
+
+
+
+
Clear /etc/hosts* Files
+
+
+
+
+
diff --git a/templates_old/dashboard.html b/templates_old/dashboard.html
new file mode 100644
index 0000000..173bd16
--- /dev/null
+++ b/templates_old/dashboard.html
@@ -0,0 +1,297 @@
+
+
+
+
+
/etc/hosts file manager
+
+
+
+
+
+
+
+
/etc/hosts file manager
+ {% with messages = get_flashed_messages(with_categories=true) %}
+ {% if messages %}
+
+ {% for category, message in messages %}
+
{{ message }}
+ {% endfor %}
+
+ {% endif %}
+ {% endwith %}
+
+
+
Welcome, {{ user.username }}!
+
+
+
+
+
+
+
Statistics
+
+ - Number of managed server: {{ stats.host_count }}
+ - Total deployments: {{ stats.total_deployments }}
+ - Successful deployments: {{ stats.successful_deployments }}
+ - Failed deployments: {{ stats.failed_deployments }}
+
+
+
+
Deployment Success Rate
+
+
+ {{ stats.successful_deployments }} Successful
+
+
+ {{ stats.failed_deployments }} Failed
+
+
+
+
+
Recent Deploy Logs
+ {% if logs %}
+ {% for log in logs %}
+
+
{{ log.timestamp.strftime('%Y-%m-%d %H:%M:%S') }}
+
{{ log.details }}
+
+ {% endfor %}
+ {% else %}
+
No deployment logs available yet.
+ {% endif %}
+
+
+
+
diff --git a/templates_old/deploy_hosts_file.html b/templates_old/deploy_hosts_file.html
new file mode 100644
index 0000000..9714865
--- /dev/null
+++ b/templates_old/deploy_hosts_file.html
@@ -0,0 +1,41 @@
+
+
+
+
+
Deploy /etc/hosts File - {{ file.title }}
+
+
+
+
+
Deploy "{{ file.title }}"
+
Select the hosts to which you want to deploy this file:
+
+
+
+
+
diff --git a/templates_old/edit_host.html b/templates_old/edit_host.html
new file mode 100644
index 0000000..fbf12e6
--- /dev/null
+++ b/templates_old/edit_host.html
@@ -0,0 +1,62 @@
+
+
+
+
+
Edit server {{ host.hostname }}
+
+
+
+
+
+
diff --git a/templates_old/edit_hosts.html b/templates_old/edit_hosts.html
new file mode 100644
index 0000000..dfafdcf
--- /dev/null
+++ b/templates_old/edit_hosts.html
@@ -0,0 +1,41 @@
+
+
+
+
+
Edit Global /etc/hosts File
+
+
+
+
+
Edit Global /etc/hosts File
+ {% with messages = get_flashed_messages(category_filter=["danger","success","info"]) %}
+ {% if messages %}
+
+ {% for message in messages %}
+
{{ message }}
+ {% endfor %}
+
+ {% endif %}
+ {% endwith %}
+
+
+
+
+
diff --git a/templates_old/hosts.html b/templates_old/hosts.html
new file mode 100644
index 0000000..3925999
--- /dev/null
+++ b/templates_old/hosts.html
@@ -0,0 +1,160 @@
+
+
+
+
+
Remote server management
+
+
+
+
+
+
diff --git a/templates_old/hosts_files.html b/templates_old/hosts_files.html
new file mode 100644
index 0000000..f8f74f8
--- /dev/null
+++ b/templates_old/hosts_files.html
@@ -0,0 +1,48 @@
+
+
+
+
+
/etc/hosts Files Management
+
+
+
+
+
Your /etc/hosts Files
+
+
+
+ ID |
+ Title |
+ Actions |
+
+
+
+ {% for file in files %}
+
+ {{ file.id }} |
+ {{ file.title }} |
+
+ Edit |
+ Deploy |
+ Delete
+ |
+
+ {% endfor %}
+
+
+
+
+
+
diff --git a/templates_old/import_hosts.html b/templates_old/import_hosts.html
new file mode 100644
index 0000000..0329a91
--- /dev/null
+++ b/templates_old/import_hosts.html
@@ -0,0 +1,31 @@
+
+
+
+
+
Import Hosts
+
+
+
+
+
Import Hosts
+
+
+
+
+
diff --git a/templates_old/list_regex_hosts.html b/templates_old/list_regex_hosts.html
new file mode 100644
index 0000000..d585021
--- /dev/null
+++ b/templates_old/list_regex_hosts.html
@@ -0,0 +1,121 @@
+
+
+
+
+
Regex /etc/hosts Entries
+
+
+
+
+
Regex (CIDR) for /etc/hosts Entries
+
+
+
+ ID |
+ Domain |
+ CIDR Range |
+ Comment |
+ Actions |
+
+
+
+ {% for e in entries %}
+
+ {{ e.id }} |
+ {{ e.domain_suffix }} |
+
+ {{ e.cidr_range }} |
+ {{ e.comment }} |
+
+ Edit
+
+ |
+
+ {% endfor %}
+
+
+
Add New Entry
+
+
+
+
+
diff --git a/templates_old/login.html b/templates_old/login.html
new file mode 100644
index 0000000..acb9ca3
--- /dev/null
+++ b/templates_old/login.html
@@ -0,0 +1,60 @@
+
+
+
+
+
Login
+
+
+
+
+
Login
+ {% with messages = get_flashed_messages(category_filter=["danger","success","info"]) %}
+ {% if messages %}
+
+ {% for message in messages %}
+
{{ message }}
+ {% endfor %}
+
+ {% endif %}
+ {% endwith %}
+
+
+
+
+
diff --git a/templates_old/new_edit_hosts_file.html b/templates_old/new_edit_hosts_file.html
new file mode 100644
index 0000000..6ddb66d
--- /dev/null
+++ b/templates_old/new_edit_hosts_file.html
@@ -0,0 +1,35 @@
+
+
+
+
+
{% if file %}Edit /etc/hosts File{% else %}New /etc/hosts File{% endif %}
+
+
+
+
+
{% if file %}Edit /etc/hosts File{% else %}New /etc/hosts File{% endif %}
+
+
+
+
+
diff --git a/templates_old/new_edit_regex_host.html b/templates_old/new_edit_regex_host.html
new file mode 100644
index 0000000..9e8a0af
--- /dev/null
+++ b/templates_old/new_edit_regex_host.html
@@ -0,0 +1,106 @@
+
+
+
+
+
{% if entry %}Edit{% else %}New{% endif %} Regex/CIDR Entry
+
+
+
+
+
+
diff --git a/templates_old/register.html b/templates_old/register.html
new file mode 100644
index 0000000..487fcb9
--- /dev/null
+++ b/templates_old/register.html
@@ -0,0 +1,60 @@
+
+
+
+
+
Register
+
+
+
+
+
Register
+ {% with messages = get_flashed_messages(category_filter=["danger","success","info"]) %}
+ {% if messages %}
+
+ {% for message in messages %}
+
{{ message }}
+ {% endfor %}
+
+ {% endif %}
+ {% endwith %}
+
+
+
+
+
diff --git a/templates_old/settings.html b/templates_old/settings.html
new file mode 100644
index 0000000..03ba6f2
--- /dev/null
+++ b/templates_old/settings.html
@@ -0,0 +1,122 @@
+
+
+
+
+
Settings
+
+
+
+
+
+
diff --git a/templates_old/view_backup.html b/templates_old/view_backup.html
new file mode 100644
index 0000000..a152908
--- /dev/null
+++ b/templates_old/view_backup.html
@@ -0,0 +1,33 @@
+
+
+
+
+
View Backup
+
+
+
+
+
Backup Preview
+ {% if host %}
+
Host: {{ host.hostname }} ({{ host.type }})
+ {% else %}
+
Default configuration
+ {% endif %}
+
Description: {{ backup.description }}
+
Created at: {{ backup.created_at }}
+
Content:
+
{{ backup.content }}
+
+
+
+