Fixed migrations

This commit is contained in:
Ultradesu
2025-07-21 13:55:49 +03:00
parent 3f346bc6c6
commit 8854aacf88
2 changed files with 19 additions and 12 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.1.7 on 2025-07-21 10:54
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('vpn', '0007_merge_20250721_1345'),
]
operations = [
migrations.RenameIndex(
model_name='accesslog',
new_name='vpn_accessl_acl_lin_9f3bc5_idx',
old_name='vpn_accessl_acl_lin_b23c6e_idx',
),
]

View File

@@ -1,16 +1,5 @@
{% extends "admin/change_list.html" %}
{% block content_title %}
<h1>Task Execution Logs</h1>
<div style="background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; padding: 16px; margin: 16px 0;">
<div style="display: flex; justify-content: space-between; align-items: center;">
<h3 style="margin: 0; color: #374151;">Manual Sync Control</h3>
</div>
<div style="border-top: 1px solid #e5e7eb; padding-top: 16px; margin-top: 16px;">
<p style="margin: 0; color: #6b7280; font-size: 14px;">
💡 Use the "Trigger full sync" action to manually synchronize all servers with current ACL settings.
</p>
</div>
</div>
<h1 class="h4 m-0 pr-3 mr-3 border-right">Task Execution Logs</h1>
{% endblock %}