Compare commits

...

10 Commits

Author SHA1 Message Date
Fabio Caccamo 9350575898 Updated setup.py 2016-11-08 12:18:35 +01:00
Fabio Caccamo 4789ee1dab Updated README.md 2016-11-08 12:18:19 +01:00
Fabio Caccamo a924c6cf5e Updated version 2016-11-08 12:17:53 +01:00
Fabio Caccamo 42b6e01f1f Added responsive support 2016-11-08 12:17:24 +01:00
Fabio Caccamo d7fa681c56 Fixed login padding 2016-11-08 12:15:42 +01:00
Fabio Caccamo 18e1425156 Updated version 2016-09-10 18:49:31 +02:00
Fabio Caccamo 1f39ceb0ad Fixed missing admin title #7 2016-09-10 18:49:20 +02:00
Fabio Caccamo 48cb73a604 Updated version 2016-09-04 18:44:07 +02:00
Fabio Caccamo c5bbbbc855 Updated README 2016-09-04 18:43:55 +02:00
Fabio Caccamo 793a019460 Fixed buttons color on focus and removed outline. 2016-09-04 18:43:29 +02:00
4 changed files with 27 additions and 8 deletions
+5 -3
View File
@@ -1,5 +1,5 @@
#django-admin-interface #django-admin-interface
django-admin-interface is a modern **flat admin interface customizable by the admin itself**. django-admin-interface is a modern **responsive flat admin interface customizable by the admin itself**.
You can use the builtin **django-theme** or create your own and **customize** **title, logo and colors**. You can use the builtin **django-theme** or create your own and **customize** **title, logo and colors**.
@@ -9,12 +9,13 @@ You can use the builtin **django-theme** or create your own and **customize** **
##Installation ##Installation
- Run `pip install django-admin-interface` - Run `pip install django-admin-interface`
- Add `admin_interface`, `flat` and `colorfield` to `settings.INSTALLED_APPS` **before** `django.contrib.admin` - Add `admin_interface`, `flat_responsive`, `flat` and `colorfield` to `settings.INSTALLED_APPS` **before** `django.contrib.admin`
```python ```python
INSTALLED_APPS = ( INSTALLED_APPS = (
#... #...
'admin_interface', 'admin_interface',
'flat', 'flat_responsive',
'flat', #if django version < 1.9
'colorfield', 'colorfield',
#... #...
'django.contrib.admin', 'django.contrib.admin',
@@ -40,6 +41,7 @@ INSTALLED_APPS = (
####Thanks ####Thanks
- [django-flat-theme](https://github.com/elky/django-flat-theme/) - [django-flat-theme](https://github.com/elky/django-flat-theme/)
- [django-flat-responsive](https://github.com/elky/django-flat-responsive)
- [django-colorfield](https://github.com/jaredly/django-colorfield/) - [django-colorfield](https://github.com/jaredly/django-colorfield/)
##License ##License
+17 -1
View File
@@ -1,6 +1,11 @@
{% extends "admin/base.html" %} {% extends "admin/base.html" %}
{% load i18n staticfiles admin_interface_tags %} {% load i18n staticfiles admin_interface_tags %}
{% block title %}
{% get_admin_interface_theme as theme %}
{% if theme.title %}{% trans theme.title %}{% else %}{% trans 'Django administration' %}{% endif %}
{% endblock %}
{% block extrastyle %} {% block extrastyle %}
{% get_admin_interface_theme as theme %} {% get_admin_interface_theme as theme %}
<style type="text/css"> <style type="text/css">
@@ -122,20 +127,25 @@
} }
.button:active, input[type=submit]:active, input[type=button]:active, .button:active, input[type=submit]:active, input[type=button]:active,
.button:focus, input[type=submit]:focus, input[type=button]:focus,
.button:hover, input[type=submit]:hover, input[type=button]:hover { .button:hover, input[type=submit]:hover, input[type=button]:hover {
background:{{ theme.css_save_button_background_hover_color }}; background:{{ theme.css_save_button_background_hover_color }};
color:{{ theme.css_save_button_text_color }}; color:{{ theme.css_save_button_text_color }};
outline: none;
} }
.button.default, input[type=submit].default, .submit-row input.default { .button.default, input[type=submit].default, .submit-row input.default {
background:{{ theme.css_save_button_background_color }}; background:{{ theme.css_save_button_background_color }};
color:{{ theme.css_save_button_text_color }}; color:{{ theme.css_save_button_text_color }};
outline: none;
} }
.button.default:active, input[type=submit].default:active, .button.default:active, input[type=submit].default:active,
.button.default:focus, input[type=submit].default:focus,
.button.default:hover, input[type=submit].default:hover { .button.default:hover, input[type=submit].default:hover {
background:{{ theme.css_save_button_background_hover_color }}; background:{{ theme.css_save_button_background_hover_color }};
color:{{ theme.css_save_button_text_color }}; color:{{ theme.css_save_button_text_color }};
outline: none;
} }
.submit-row a.deletelink:link, .submit-row a.deletelink:link,
@@ -221,7 +231,7 @@
} }
.login #content { .login #content {
padding:0px 30px 10px 30px !important; padding:10px 30px 10px 30px !important;
} }
/* same lateral padding as in logged view */ /* same lateral padding as in logged view */
@@ -509,5 +519,11 @@
{% block bodyclass %}admin-interface flat-theme{% endblock %} {% block bodyclass %}admin-interface flat-theme{% endblock %}
{% block blockbots %}
{{ block.super }}
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" type="text/css" href="{% static "admin/css/responsive.css" %}" />
{% endblock %}
{% block sidebar %} {% block sidebar %}
{% endblock %} {% endblock %}
+1 -1
View File
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
__version__ = '0.1.7' __version__ = '0.2.0'
+4 -3
View File
@@ -10,15 +10,16 @@ setup(
include_package_data=True, include_package_data=True,
license='MIT License', license='MIT License',
version=__version__, version=__version__,
description='django-admin-interface is a modern flat admin interface customizable by the admin itself.', description='django-admin-interface is a modern responsive flat admin interface customizable by the admin itself.',
author='Fabio Caccamo', author='Fabio Caccamo',
author_email='fabio.caccamo@gmail.com', author_email='fabio.caccamo@gmail.com',
url='https://github.com/fabiocaccamo/django-admin-interface', url='https://github.com/fabiocaccamo/django-admin-interface',
download_url='https://github.com/fabiocaccamo/django-admin-interface/archive/%s.tar.gz' % __version__, download_url='https://github.com/fabiocaccamo/django-admin-interface/archive/%s.tar.gz' % __version__,
keywords=['django', 'admin', 'interface', 'ui', 'flat', 'theme', 'custom'], keywords=['django', 'admin', 'interface', 'responsive', 'flat', 'theme', 'custom', 'ui'],
install_requires=[ install_requires=[
'django-colorfield==0.1.10', 'django-colorfield==0.1.10',
'django-flat-theme==1.1.3' 'django-flat-theme==1.1.4',
'django-flat-responsive==1.0.0'
], ],
classifiers=[] classifiers=[]
) )