Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b165e6d27c | |||
| f0a72d5e40 | |||
| 869d4c31ad | |||
| a7788b98ed |
@@ -4,7 +4,7 @@
|
|||||||
[](https://pypi.org/project/django-admin-interface/)
|
[](https://pypi.org/project/django-admin-interface/)
|
||||||
[](https://pepy.tech/project/django-admin-interface)
|
[](https://pepy.tech/project/django-admin-interface)
|
||||||
[](https://github.com/fabiocaccamo/django-admin-interface/)
|
[](https://github.com/fabiocaccamo/django-admin-interface/)
|
||||||
[](https://badges.pufler.dev)
|
[](https://badges.pufler.dev)
|
||||||
[](https://github.com/fabiocaccamo/django-admin-interface/blob/master/LICENSE.txt)
|
[](https://github.com/fabiocaccamo/django-admin-interface/blob/master/LICENSE.txt)
|
||||||
|
|
||||||
[](https://travis-ci.org/fabiocaccamo/django-admin-interface)
|
[](https://travis-ci.org/fabiocaccamo/django-admin-interface)
|
||||||
@@ -29,6 +29,7 @@ django-admin-interface is a modern **responsive flat admin interface customizabl
|
|||||||
- Compatibility / Style optimizations for:
|
- Compatibility / Style optimizations for:
|
||||||
- `django-ckeditor`
|
- `django-ckeditor`
|
||||||
- `django-dynamic-raw-id`
|
- `django-dynamic-raw-id`
|
||||||
|
- `django-json-widget`
|
||||||
- `django-modeltranslation`
|
- `django-modeltranslation`
|
||||||
- `django-tabbed-admin`
|
- `django-tabbed-admin`
|
||||||
- `sorl-thumbnail`
|
- `sorl-thumbnail`
|
||||||
@@ -105,6 +106,28 @@ You can add a theme you've created through the admin to this repository by [send
|
|||||||
|
|
||||||
You can use [django-apptemplates](https://github.com/bittner/django-apptemplates), then add `{% extends "admin_interface:admin/base_site.html" %}` to your `base_site.html`
|
You can use [django-apptemplates](https://github.com/bittner/django-apptemplates), then add `{% extends "admin_interface:admin/base_site.html" %}` to your `base_site.html`
|
||||||
|
|
||||||
|
## Testing
|
||||||
|
```bash
|
||||||
|
# create python virtual environment
|
||||||
|
virtualenv testing_django_admin_interface
|
||||||
|
|
||||||
|
# activate virtualenv
|
||||||
|
cd testing_django_admin_interface && . bin/activate
|
||||||
|
|
||||||
|
# clone repo
|
||||||
|
git clone https://github.com/fabiocaccamo/django-admin-interface.git src && cd src
|
||||||
|
|
||||||
|
# install dependencies
|
||||||
|
pip install -r requirements.txt
|
||||||
|
|
||||||
|
# run tests
|
||||||
|
tox
|
||||||
|
# or
|
||||||
|
python setup.py test
|
||||||
|
# or
|
||||||
|
python -m django test --settings "tests.settings"
|
||||||
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|||||||
@@ -25,6 +25,7 @@ https://github.com/fabiocaccamo/django-admin-interface
|
|||||||
{% include "admin_interface/css/tabbed-admin.css" %}
|
{% include "admin_interface/css/tabbed-admin.css" %}
|
||||||
{% include "admin_interface/css/ckeditor.css" %}
|
{% include "admin_interface/css/ckeditor.css" %}
|
||||||
{% include "admin_interface/css/tinymce.css" %}
|
{% include "admin_interface/css/tinymce.css" %}
|
||||||
|
{% include "admin_interface/css/json-widget.css" %}
|
||||||
|
|
||||||
{% if theme.css %}
|
{% if theme.css %}
|
||||||
{{ theme.css|safe }}
|
{{ theme.css|safe }}
|
||||||
|
|||||||
@@ -0,0 +1,29 @@
|
|||||||
|
/*
|
||||||
|
django-json-widget support
|
||||||
|
https://github.com/jmrivas86/django-json-widget
|
||||||
|
*/
|
||||||
|
|
||||||
|
.admin-interface div.jsoneditor {
|
||||||
|
border: 1px solid {{ theme.css_module_background_color }};
|
||||||
|
{% if theme.css_module_rounded_corners %}
|
||||||
|
border-radius: 4px;
|
||||||
|
overflow: hidden;
|
||||||
|
{% endif %}
|
||||||
|
}
|
||||||
|
|
||||||
|
.admin-interface div.jsoneditor-menu {
|
||||||
|
background-color: {{ theme.css_module_background_color }};
|
||||||
|
border-bottom: 1px solid {{ theme.css_module_background_color }};
|
||||||
|
}
|
||||||
|
|
||||||
|
.admin-interface div.jsoneditor-menu a.jsoneditor-poweredBy {
|
||||||
|
color: {{ theme.css_module_link_color }};
|
||||||
|
}
|
||||||
|
|
||||||
|
.admin-interface div.jsoneditor-contextmenu ul li button.jsoneditor-selected,
|
||||||
|
.admin-interface div.jsoneditor-contextmenu ul li button.jsoneditor-selected:focus,
|
||||||
|
.admin-interface div.jsoneditor-contextmenu ul li button.jsoneditor-selected:hover {
|
||||||
|
background-color: #FFFFCC;
|
||||||
|
color: #000000;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
__version__ = '0.13.2'
|
__version__ = '0.13.3'
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
codecov
|
|
||||||
coverage
|
|
||||||
tox
|
|
||||||
+5
-1
@@ -1,4 +1,8 @@
|
|||||||
|
codecov
|
||||||
|
coverage
|
||||||
|
django>=1.7
|
||||||
django-colorfield
|
django-colorfield
|
||||||
django-flat-theme
|
django-flat-theme
|
||||||
django-flat-responsive
|
django-flat-responsive
|
||||||
six>=1.9.0
|
six>=1.9.0
|
||||||
|
tox
|
||||||
Reference in New Issue
Block a user