vanta-admin 0.1.4__tar.gz → 0.1.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {vanta_admin-0.1.4/vanta_admin.egg-info → vanta_admin-0.1.6}/PKG-INFO +38 -1
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/README.md +37 -0
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/pyproject.toml +1 -1
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/vanta_admin/apps.py +1 -1
- vanta_admin-0.1.4/vanta_admin/static/admin/css/theme.css → vanta_admin-0.1.6/vanta_admin/static/admin/css/theme.admin.css +15 -981
- vanta_admin-0.1.6/vanta_admin/static/admin/css/theme.base.css +347 -0
- vanta_admin-0.1.6/vanta_admin/static/admin/css/theme.css +5 -0
- vanta_admin-0.1.6/vanta_admin/static/admin/css/theme.login.css +231 -0
- vanta_admin-0.1.6/vanta_admin/static/admin/css/theme.responsive.css +291 -0
- vanta_admin-0.1.6/vanta_admin/static/admin/css/theme.tokens.css +200 -0
- vanta_admin-0.1.6/vanta_admin/static/admin/css/two_factor.css +496 -0
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/vanta_admin/static/admin/js/sidebar.js +2 -0
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/vanta_admin/templates/admin/index.html +11 -14
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/vanta_admin/templates/admin/nav_sidebar.html +5 -27
- vanta_admin-0.1.6/vanta_admin/templates/two_factor/_base.html +29 -0
- vanta_admin-0.1.6/vanta_admin/templates/two_factor/_base_focus.html +13 -0
- vanta_admin-0.1.6/vanta_admin/templates/two_factor/_wizard_actions.html +15 -0
- vanta_admin-0.1.6/vanta_admin/templates/two_factor/core/login.html +56 -0
- vanta_admin-0.1.6/vanta_admin/templates/two_factor/core/setup_complete.html +24 -0
- vanta_admin-0.1.6/vanta_admin/templates/two_factor/profile/profile.html +60 -0
- vanta_admin-0.1.6/vanta_admin/templatetags/admin_theme.py +308 -0
- {vanta_admin-0.1.4 → vanta_admin-0.1.6/vanta_admin.egg-info}/PKG-INFO +38 -1
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/vanta_admin.egg-info/SOURCES.txt +12 -0
- vanta_admin-0.1.4/vanta_admin/templatetags/admin_theme.py +0 -81
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/LICENSE +0 -0
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/MANIFEST.in +0 -0
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/setup.cfg +0 -0
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/vanta_admin/__init__.py +0 -0
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/vanta_admin/templates/admin/app_index.html +0 -0
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/vanta_admin/templates/admin/base.html +0 -0
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/vanta_admin/templates/admin/base_site.html +0 -0
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/vanta_admin/templates/admin/change_form.html +0 -0
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/vanta_admin/templates/admin/change_list.html +0 -0
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/vanta_admin/templates/admin/filter.html +0 -0
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/vanta_admin/templates/admin/includes/breadcrumbs.html +0 -0
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/vanta_admin/templates/admin/login.html +0 -0
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/vanta_admin/templatetags/__init__.py +0 -0
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/vanta_admin.egg-info/dependency_links.txt +0 -0
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/vanta_admin.egg-info/requires.txt +0 -0
- {vanta_admin-0.1.4 → vanta_admin-0.1.6}/vanta_admin.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: vanta-admin
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
4
4
|
Summary: A sharp, dark, and portable Django admin theme forged for builders who want the admin to feel less default.
|
|
5
5
|
Author: oli-dev0
|
|
6
6
|
License-Expression: MIT
|
|
@@ -30,6 +30,20 @@ and a standalone structure that stays close to Django's admin template system.
|
|
|
30
30
|
It is designed to be portable and to avoid frontend runtime dependencies outside
|
|
31
31
|
standard Django admin behavior.
|
|
32
32
|
|
|
33
|
+
## What It Adds
|
|
34
|
+
|
|
35
|
+
- A fixed sidebar with persistent collapsed state and remembered open sections.
|
|
36
|
+
- Light and dark theme support through CSS tokens.
|
|
37
|
+
- A denser dashboard, changelist, filter, message, and form presentation.
|
|
38
|
+
- Default icons for common admin apps, models, and recent actions.
|
|
39
|
+
- A responsive mobile sidebar overlay.
|
|
40
|
+
- Optional themed templates for `django-two-factor-auth` login, setup completion,
|
|
41
|
+
account security, and backup-token flows.
|
|
42
|
+
|
|
43
|
+
Vanta Admin does not replace Django admin, change your permissions, or configure
|
|
44
|
+
two-factor authentication for you. If your project uses `django-two-factor-auth`,
|
|
45
|
+
Vanta provides matching templates and CSS for the visible 2FA screens.
|
|
46
|
+
|
|
33
47
|
## Tested With
|
|
34
48
|
Vanta Admin was created and tested with:
|
|
35
49
|
|
|
@@ -81,9 +95,32 @@ Then run your normal static asset flow for Django:
|
|
|
81
95
|
python manage.py collectstatic
|
|
82
96
|
```
|
|
83
97
|
|
|
98
|
+
## Optional Two-Factor Auth Theme Support
|
|
99
|
+
|
|
100
|
+
If your project already uses `django-two-factor-auth`, place `vanta_admin` before
|
|
101
|
+
the two-factor apps and before `django.contrib.admin` so Vanta's templates are
|
|
102
|
+
found first:
|
|
103
|
+
|
|
104
|
+
```python
|
|
105
|
+
INSTALLED_APPS = [
|
|
106
|
+
'vanta_admin',
|
|
107
|
+
'django_otp',
|
|
108
|
+
'django_otp.plugins.otp_static',
|
|
109
|
+
'django_otp.plugins.otp_totp',
|
|
110
|
+
'two_factor',
|
|
111
|
+
'django.contrib.admin',
|
|
112
|
+
# ...
|
|
113
|
+
]
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
Configure `django-two-factor-auth` normally in your project URLs and settings.
|
|
117
|
+
Vanta only provides the theme layer.
|
|
118
|
+
|
|
84
119
|
## Notes
|
|
85
120
|
- The package name on PyPI is `vanta-admin`.
|
|
86
121
|
- The Django app label you add to `INSTALLED_APPS` is `vanta_admin`.
|
|
122
|
+
- Two-factor auth support is visual/template support for projects that already
|
|
123
|
+
install and configure `django-two-factor-auth`.
|
|
87
124
|
|
|
88
125
|
## Links
|
|
89
126
|
- Website: https://vanta-admin.org/
|
|
@@ -5,6 +5,20 @@ and a standalone structure that stays close to Django's admin template system.
|
|
|
5
5
|
It is designed to be portable and to avoid frontend runtime dependencies outside
|
|
6
6
|
standard Django admin behavior.
|
|
7
7
|
|
|
8
|
+
## What It Adds
|
|
9
|
+
|
|
10
|
+
- A fixed sidebar with persistent collapsed state and remembered open sections.
|
|
11
|
+
- Light and dark theme support through CSS tokens.
|
|
12
|
+
- A denser dashboard, changelist, filter, message, and form presentation.
|
|
13
|
+
- Default icons for common admin apps, models, and recent actions.
|
|
14
|
+
- A responsive mobile sidebar overlay.
|
|
15
|
+
- Optional themed templates for `django-two-factor-auth` login, setup completion,
|
|
16
|
+
account security, and backup-token flows.
|
|
17
|
+
|
|
18
|
+
Vanta Admin does not replace Django admin, change your permissions, or configure
|
|
19
|
+
two-factor authentication for you. If your project uses `django-two-factor-auth`,
|
|
20
|
+
Vanta provides matching templates and CSS for the visible 2FA screens.
|
|
21
|
+
|
|
8
22
|
## Tested With
|
|
9
23
|
Vanta Admin was created and tested with:
|
|
10
24
|
|
|
@@ -56,9 +70,32 @@ Then run your normal static asset flow for Django:
|
|
|
56
70
|
python manage.py collectstatic
|
|
57
71
|
```
|
|
58
72
|
|
|
73
|
+
## Optional Two-Factor Auth Theme Support
|
|
74
|
+
|
|
75
|
+
If your project already uses `django-two-factor-auth`, place `vanta_admin` before
|
|
76
|
+
the two-factor apps and before `django.contrib.admin` so Vanta's templates are
|
|
77
|
+
found first:
|
|
78
|
+
|
|
79
|
+
```python
|
|
80
|
+
INSTALLED_APPS = [
|
|
81
|
+
'vanta_admin',
|
|
82
|
+
'django_otp',
|
|
83
|
+
'django_otp.plugins.otp_static',
|
|
84
|
+
'django_otp.plugins.otp_totp',
|
|
85
|
+
'two_factor',
|
|
86
|
+
'django.contrib.admin',
|
|
87
|
+
# ...
|
|
88
|
+
]
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
Configure `django-two-factor-auth` normally in your project URLs and settings.
|
|
92
|
+
Vanta only provides the theme layer.
|
|
93
|
+
|
|
59
94
|
## Notes
|
|
60
95
|
- The package name on PyPI is `vanta-admin`.
|
|
61
96
|
- The Django app label you add to `INSTALLED_APPS` is `vanta_admin`.
|
|
97
|
+
- Two-factor auth support is visual/template support for projects that already
|
|
98
|
+
install and configure `django-two-factor-auth`.
|
|
62
99
|
|
|
63
100
|
## Links
|
|
64
101
|
- Website: https://vanta-admin.org/
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "vanta-admin"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.6"
|
|
8
8
|
description = "A sharp, dark, and portable Django admin theme forged for builders who want the admin to feel less default."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|