https://github.com/surface-security/django-surface-theme
django admin theme based on https://appseed.us/admin-dashboards/django-dashboard-atlantis-dark
https://github.com/surface-security/django-surface-theme
Last synced: 9 months ago
JSON representation
django admin theme based on https://appseed.us/admin-dashboards/django-dashboard-atlantis-dark
- Host: GitHub
- URL: https://github.com/surface-security/django-surface-theme
- Owner: surface-security
- License: mit
- Archived: true
- Created: 2022-01-18T16:15:11.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-07-14T14:25:29.000Z (12 months ago)
- Last Synced: 2025-09-21T01:52:25.183Z (9 months ago)
- Language: CSS
- Size: 1.93 MB
- Stars: 3
- Watchers: 2
- Forks: 3
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# django-surface-theme
Surface theme is built on top of [Django Dashboard Atlantis Dark](https://appseed.us/admin-dashboards/django-dashboard-atlantis-dark).
[](https://badge.fury.io/py/django-surface-theme)
## Surface Theme variables
Define custom title in `urls.py`:
```
admin.site.site_title = "Surface Security"
```
Define side menu navigation items by adding the following variable in `settings.py`:
```
SURFACE_MENU_ITEMS = [
{'label': ('Organisation'), 'icon': 'fas fa-building', 'items':[
{'name': 'auth.user'}
]},
{'label': ('Organisation'), 'app_label': 'auth', 'icon': 'fas fa-building', 'items':[
{'name': 'user', 'label': 'Custom Label'},
{'url': 'https://example.com', 'url_blank': True, 'label': 'Custom URL'}
]},
]
```
Define home links and items by adding the following variable in `settings.py`:
```
SURFACE_LINKS_ITEMS = [
{'label': ('Examples'), 'items':[
{'url': 'https://example.com', 'url_blank': True, 'name': 'Example.com'}
]}
]
```