Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e364f9da1c | |||
| aec847070f | |||
| 11f7440273 | |||
| 02cde83181 | |||
| a302c87724 | |||
| d61ef86dd6 | |||
| 071fe476a6 | |||
| 9b611d1dcb | |||
| 61c1720fd7 | |||
| 962267de1d | |||
| f632929183 | |||
| 308858a0d0 | |||
| db7e0770b2 | |||
| 195ef2c44f | |||
| 48d3952e68 | |||
| 96570502cc | |||
| 759b5a6f49 | |||
| 92710be337 |
@@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.14.1](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.14.1) - 2020-11-12
|
||||||
|
- Fixed sticky list-filter floating. #100
|
||||||
|
|
||||||
|
## [0.14.0](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.14.0) - 2020-10-15
|
||||||
|
- Added list filter sticky option (only for `django >= 3.1.2`).
|
||||||
|
- Enabled list filter dropdown by default.
|
||||||
|
- Fixed changelist searchbar style.
|
||||||
|
|
||||||
|
## [0.13.7](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.13.7) - 2020-10-14
|
||||||
|
- Improved responsive widgets style.
|
||||||
|
- Prevented body horizontal scroll.
|
||||||
|
- Fixed tabular inline horizontal scroll.
|
||||||
|
- Fixed changelist filter min-width.
|
||||||
|
- Fixed changelist and toolbar theme rounded corners.
|
||||||
|
- Fixed calendar and timelist buttons theme color.
|
||||||
|
- Fixed list filter select size.
|
||||||
|
- Fixed content max-width with `django >= 3.1`.
|
||||||
|
|
||||||
## [0.13.6](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.13.6) - 2020-10-14
|
## [0.13.6](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.13.6) - 2020-10-14
|
||||||
- Added persian language. #98
|
- Added persian language. #98
|
||||||
- Fixed logo max-width on small screens.
|
- Fixed logo max-width on small screens.
|
||||||
|
|||||||
@@ -112,7 +112,10 @@ class ThemeAdmin(admin.ModelAdmin):
|
|||||||
}),
|
}),
|
||||||
(_('List Filter'), {
|
(_('List Filter'), {
|
||||||
'classes': ('wide', ),
|
'classes': ('wide', ),
|
||||||
'fields': ('list_filter_dropdown', )
|
'fields': (
|
||||||
|
'list_filter_dropdown',
|
||||||
|
'list_filter_sticky',
|
||||||
|
)
|
||||||
}),
|
}),
|
||||||
(_('Recent Actions'), {
|
(_('Recent Actions'), {
|
||||||
'classes': ('wide', ),
|
'classes': ('wide', ),
|
||||||
|
|||||||
@@ -0,0 +1,20 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('admin_interface', '0016_add_language_chooser_display'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='theme',
|
||||||
|
name='list_filter_dropdown',
|
||||||
|
field=models.BooleanField(default=True, verbose_name='use dropdown'),
|
||||||
|
),
|
||||||
|
]
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('admin_interface', '0017_change_list_filter_dropdown'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='theme',
|
||||||
|
name='list_filter_sticky',
|
||||||
|
field=models.BooleanField(default=True, verbose_name='sticky position'),
|
||||||
|
),
|
||||||
|
]
|
||||||
@@ -289,8 +289,12 @@ class Theme(models.Model):
|
|||||||
verbose_name=_('close button visible'))
|
verbose_name=_('close button visible'))
|
||||||
|
|
||||||
list_filter_dropdown = models.BooleanField(
|
list_filter_dropdown = models.BooleanField(
|
||||||
default=False,
|
default=True,
|
||||||
verbose_name=_('use dropdown'))
|
verbose_name=_('use dropdown'))
|
||||||
|
list_filter_sticky = models.BooleanField(
|
||||||
|
default=True,
|
||||||
|
verbose_name=_('sticky position'))
|
||||||
|
|
||||||
recent_actions_visible = models.BooleanField(
|
recent_actions_visible = models.BooleanField(
|
||||||
default=True,
|
default=True,
|
||||||
verbose_name=_('visible'))
|
verbose_name=_('visible'))
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
.admin-interface {
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
/* fix login */
|
/* fix login */
|
||||||
.admin-interface.login #container {
|
.admin-interface.login #container {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@@ -67,7 +71,6 @@
|
|||||||
}
|
}
|
||||||
/* end login fix*/
|
/* end login fix*/
|
||||||
|
|
||||||
|
|
||||||
.admin-interface #header {
|
.admin-interface #header {
|
||||||
height:auto;
|
height:auto;
|
||||||
min-height:40px;
|
min-height:40px;
|
||||||
@@ -209,6 +212,7 @@ body.admin-interface .paginator a.showall:visited {
|
|||||||
.admin-interface form .form-row p.file-upload .clearable-file-input {
|
.admin-interface form .form-row p.file-upload .clearable-file-input {
|
||||||
display: block;
|
display: block;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
|
margin-left: 0;
|
||||||
margin-bottom: -10px;
|
margin-bottom: -10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -249,14 +253,18 @@ body.admin-interface .paginator a.showall:visited {
|
|||||||
|
|
||||||
/* LIST FILTER */
|
/* LIST FILTER */
|
||||||
.admin-interface .module.filtered h2 {
|
.admin-interface .module.filtered h2 {
|
||||||
border-bottom-left-radius:0;
|
border-bottom-left-radius: 0;
|
||||||
border-bottom-right-radius:0;
|
border-bottom-right-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.admin-interface .module.filtered #changelist-filter {
|
.admin-interface .module.filtered #changelist-filter {
|
||||||
border-bottom-left-radius:4px;
|
min-width: 240px;
|
||||||
border-bottom-right-radius:4px;
|
}
|
||||||
min-width: 200px;
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
.admin-interface .module.filtered #changelist-filter {
|
||||||
|
min-width: 200px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.admin-interface .module.filtered #changelist-filter h2 {
|
.admin-interface .module.filtered #changelist-filter h2 {
|
||||||
@@ -301,6 +309,23 @@ body.admin-interface .paginator a.showall:visited {
|
|||||||
}
|
}
|
||||||
/* end fix */
|
/* end fix */
|
||||||
|
|
||||||
|
/* begin fix tabular inlines horizontal scroll */
|
||||||
|
.admin-interface .inline-related.tabular fieldset.module {
|
||||||
|
display: block;
|
||||||
|
overflow-x: scroll;
|
||||||
|
width: 100%;
|
||||||
|
white-space: nowrap;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.admin-interface .inline-related.tabular fieldset.module h2 {
|
||||||
|
position: sticky;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
.admin-interface .inline-related.tabular fieldset.module table tbody tr {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
/* end fix */
|
||||||
|
|
||||||
.admin-interface .inline-related h3 {
|
.admin-interface .inline-related h3 {
|
||||||
padding:6px 10px;
|
padding:6px 10px;
|
||||||
}
|
}
|
||||||
@@ -342,17 +367,6 @@ body.admin-interface .paginator a.showall:visited {
|
|||||||
background-color:#AAAAAA;
|
background-color:#AAAAAA;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* fix textarea horizontal scroll on Firefox */
|
|
||||||
@media (max-width: 767px){
|
|
||||||
.admin-interface .aligned .form-row textarea {
|
|
||||||
width: 100% !important;
|
|
||||||
flex: 0 1 auto;
|
|
||||||
}
|
|
||||||
.admin-interface .aligned .form-row input[type="file"] {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* improve responsive selector */
|
/* improve responsive selector */
|
||||||
|
|
||||||
/* fix [stacked, not-stacked] equalize horizontal and vertical select padding for selector */
|
/* fix [stacked, not-stacked] equalize horizontal and vertical select padding for selector */
|
||||||
@@ -398,6 +412,11 @@ body.admin-interface .paginator a.showall:visited {
|
|||||||
margin-top: -2px;
|
margin-top: -2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.admin-interface .main > #nav-sidebar + .content,
|
||||||
|
.admin-interface .main.shifted > #nav-sidebar + .content {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
/* hide nav-sidebar below 1280px to prevent horizontal overflow issues */
|
/* hide nav-sidebar below 1280px to prevent horizontal overflow issues */
|
||||||
@media (max-width:1279px) {
|
@media (max-width:1279px) {
|
||||||
.admin-interface #nav-sidebar,
|
.admin-interface #nav-sidebar,
|
||||||
@@ -436,34 +455,6 @@ body.admin-interface .paginator a.showall:visited {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* fix related-widget when the nav-sidebar is collapsed */
|
|
||||||
@media (max-width:1100px) {
|
|
||||||
.admin-interface.change-form #main .related-widget-wrapper {
|
|
||||||
clear: left;
|
|
||||||
margin-top: 5px;
|
|
||||||
}
|
|
||||||
.admin-interface.change-form #main .related-widget-wrapper + .help {
|
|
||||||
margin-top: 10px;
|
|
||||||
margin-left: 0;
|
|
||||||
padding-left: 0;
|
|
||||||
padding-right: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* fix related-widget when the nav-sidebar is expanded */
|
|
||||||
@media (min-width:1280px) and (max-width:1480px) {
|
|
||||||
.admin-interface.change-form:not(.popup) .related-widget-wrapper {
|
|
||||||
clear: left;
|
|
||||||
margin-top: 5px;
|
|
||||||
}
|
|
||||||
.admin-interface.change-form #main.shifted .related-widget-wrapper + .help {
|
|
||||||
margin-top: 10px;
|
|
||||||
margin-left: 0;
|
|
||||||
padding-left: 0;
|
|
||||||
padding-right: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.admin-interface #nav-sidebar .current-app .section:link,
|
.admin-interface #nav-sidebar .current-app .section:link,
|
||||||
.admin-interface #nav-sidebar .current-app .section:visited {
|
.admin-interface #nav-sidebar .current-app .section:visited {
|
||||||
color: #FFFFCC;
|
color: #FFFFCC;
|
||||||
@@ -473,3 +464,91 @@ body.admin-interface .paginator a.showall:visited {
|
|||||||
.admin-interface #nav-sidebar .current-model {
|
.admin-interface #nav-sidebar .current-model {
|
||||||
background: #FFFFCC;
|
background: #FFFFCC;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* fixed related widget and select2 */
|
||||||
|
.admin-interface .aligned .form-row .related-widget-wrapper {
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.admin-interface .aligned .form-row .related-widget-wrapper .select2-container ~ .related-widget-wrapper-link {
|
||||||
|
margin-left: 0;
|
||||||
|
padding: 4px 8px 6px 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.admin-interface .aligned .form-row .related-widget-wrapper .select2-container + .related-widget-wrapper-link {
|
||||||
|
margin-left: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* fixed time widget header border radius */
|
||||||
|
.admin-interface .clockbox.module h2 {
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* fix searchbar overriden padding */
|
||||||
|
.admin-interface #changelist #changelist-search #searchbar {
|
||||||
|
padding: 2px 5px 3px 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
.admin-interface #changelist #toolbar {
|
||||||
|
border-top: 1px solid #eee;
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
|
}
|
||||||
|
/* fixed changelist search size when there are search results and .quiet is visible */
|
||||||
|
.admin-interface #changelist-search label img {
|
||||||
|
margin-top: 2px;
|
||||||
|
}
|
||||||
|
.admin-interface #changelist-search .quiet {
|
||||||
|
margin: 0 0 0 10px;
|
||||||
|
align-self: center;
|
||||||
|
flex-basis: content;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
/* fixed responsive widgets */
|
||||||
|
.admin-interface .aligned.collapsed .form-row {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.admin-interface .aligned .form-row > div {
|
||||||
|
display: flex;
|
||||||
|
max-width: 100vw;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.admin-interface .aligned .form-row .help {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.admin-interface .aligned .form-row .checkbox-row label {
|
||||||
|
margin: 10px 0 0 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.admin-interface .aligned .form-row input[type="file"],
|
||||||
|
.admin-interface .aligned .form-row input[type="text"],
|
||||||
|
.admin-interface .aligned .form-row input[type="email"] {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* fix textarea horizontal scroll on Firefox */
|
||||||
|
.admin-interface .aligned .form-row textarea {
|
||||||
|
width: 100% !important;
|
||||||
|
flex: 0 1 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.admin-interface .aligned .form-row .datetime input[type="text"] {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.admin-interface .aligned .form-row span + .file-upload {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.admin-interface .aligned .form-row .file-upload input[type="file"] {
|
||||||
|
margin-top: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -282,6 +282,29 @@
|
|||||||
color:{{ theme.css_generic_link_hover_color }};
|
color:{{ theme.css_generic_link_hover_color }};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* list-filter sticky */
|
||||||
|
{% if theme.list_filter_sticky %}
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.admin-interface .module.filtered #changelist-filter {
|
||||||
|
position: sticky;
|
||||||
|
top: 40px;
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
/* feature not available for django < 3.1.2 */
|
||||||
|
.admin-interface .module.filtered #toolbar + #changelist-filter {
|
||||||
|
position: absolute;
|
||||||
|
top: 0px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
.admin-interface .module.filtered #changelist-filter {
|
||||||
|
{% if theme.css_module_rounded_corners %}
|
||||||
|
border-bottom-left-radius: 4px;
|
||||||
|
border-bottom-right-radius: 4px;
|
||||||
|
{% endif %}
|
||||||
|
}
|
||||||
|
|
||||||
.admin-interface .module.filtered #changelist-filter #changelist-filter-clear a:focus,
|
.admin-interface .module.filtered #changelist-filter #changelist-filter-clear a:focus,
|
||||||
.admin-interface .module.filtered #changelist-filter #changelist-filter-clear a:hover {
|
.admin-interface .module.filtered #changelist-filter #changelist-filter-clear a:hover {
|
||||||
color: #666;
|
color: #666;
|
||||||
@@ -346,3 +369,13 @@
|
|||||||
.admin-interface #toggle-nav-sidebar:active {
|
.admin-interface #toggle-nav-sidebar:active {
|
||||||
color: {{ theme.css_generic_link_hover_color }};
|
color: {{ theme.css_generic_link_hover_color }};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.admin-interface .calendar td.selected a,
|
||||||
|
.admin-interface .calendar td a:active,
|
||||||
|
.admin-interface .calendar td a:focus,
|
||||||
|
.admin-interface .calendar td a:hover,
|
||||||
|
.admin-interface .timelist a:active,
|
||||||
|
.admin-interface .timelist a:focus,
|
||||||
|
.admin-interface .timelist a:hover {
|
||||||
|
background: {{ theme.css_module_background_color }};
|
||||||
|
}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ list-filter-dropdown
|
|||||||
}
|
}
|
||||||
|
|
||||||
.admin-interface .list-filter-dropdown select {
|
.admin-interface .list-filter-dropdown select {
|
||||||
background-color:#FFFFFF;
|
background-color: #FFFFFF;
|
||||||
width:90%;
|
width: calc(100% - 30px);
|
||||||
margin-right:5%;
|
margin-right: 15px;
|
||||||
}
|
}
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
__version__ = '0.13.6'
|
__version__ = '0.14.1'
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
from setuptools import find_packages, setup
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
import os
|
import os, sys
|
||||||
|
|
||||||
exec(open('admin_interface/version.py').read())
|
exec(open('admin_interface/version.py').read())
|
||||||
|
|
||||||
@@ -15,7 +15,8 @@ long_description_file_path = os.path.join(package_path, 'README.md')
|
|||||||
long_description_content_type = 'text/markdown'
|
long_description_content_type = 'text/markdown'
|
||||||
long_description = ''
|
long_description = ''
|
||||||
try:
|
try:
|
||||||
with open(long_description_file_path) as f:
|
long_description_file_options = {} if sys.version_info[0] < 3 else { 'encoding':'utf-8' }
|
||||||
|
with open(long_description_file_path, 'r', **long_description_file_options) as f:
|
||||||
long_description = f.read()
|
long_description = f.read()
|
||||||
except IOError:
|
except IOError:
|
||||||
pass
|
pass
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import django
|
import django
|
||||||
import os
|
import os
|
||||||
|
|
||||||
@@ -91,6 +93,15 @@ DATABASES = {
|
|||||||
'default': database_config.get(database_engine),
|
'default': database_config.get(database_engine),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
USE_I18N = True
|
||||||
|
LANGUAGES = (
|
||||||
|
('en', 'English', ),
|
||||||
|
('it', 'Italian', ),
|
||||||
|
)
|
||||||
|
LANGUAGE_CODE = 'en'
|
||||||
|
|
||||||
|
ROOT_URLCONF = 'tests.urls'
|
||||||
|
|
||||||
MEDIA_ROOT = os.path.join(BASE_DIR, 'admin_interface/public/media/')
|
MEDIA_ROOT = os.path.join(BASE_DIR, 'admin_interface/public/media/')
|
||||||
MEDIA_URL = '/media/'
|
MEDIA_URL = '/media/'
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from django.core.management import call_command
|
from django.core.management import call_command
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import django
|
import django
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.core.exceptions import ImproperlyConfigured
|
from django.core.exceptions import ImproperlyConfigured
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
from django.test import TestCase
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.test import override_settings, TestCase
|
||||||
from django.test.client import RequestFactory
|
from django.test.client import RequestFactory
|
||||||
from django.template import Context, Template
|
from django.template import Context, Template
|
||||||
|
|
||||||
@@ -20,6 +22,63 @@ class AdminInterfaceTemplateTagsTestCase(TestCase):
|
|||||||
def __render_template(self, string, context=None):
|
def __render_template(self, string, context=None):
|
||||||
return Template(string).render(Context(context or {}))
|
return Template(string).render(Context(context or {}))
|
||||||
|
|
||||||
|
def test_get_admin_interface_languages(self):
|
||||||
|
context = Context({
|
||||||
|
'request': self.request_factory.get('/en/admin/'),
|
||||||
|
})
|
||||||
|
languages = templatetags.get_admin_interface_languages(context)
|
||||||
|
expected_languages = [
|
||||||
|
{'code': 'en', 'name': 'English', 'default': True, 'active': True, 'activation_url': '/i18n/setlang/?next=/en/admin/'},
|
||||||
|
{'code': 'it', 'name': 'Italian', 'default': False, 'active': False, 'activation_url': '/i18n/setlang/?next=/it/admin/'}
|
||||||
|
]
|
||||||
|
self.assertEqual(len(languages), len(expected_languages))
|
||||||
|
self.assertEqual(languages[0], expected_languages[0])
|
||||||
|
self.assertEqual(languages[1], expected_languages[1])
|
||||||
|
|
||||||
|
@override_settings(
|
||||||
|
USE_I18N = False,
|
||||||
|
)
|
||||||
|
def test_get_admin_interface_languages_with_i18n_disabled(self):
|
||||||
|
context = Context({
|
||||||
|
'request': self.request_factory.get('/en/admin/'),
|
||||||
|
})
|
||||||
|
languages = templatetags.get_admin_interface_languages(context)
|
||||||
|
self.assertEqual(languages, None)
|
||||||
|
|
||||||
|
@override_settings(
|
||||||
|
ROOT_URLCONF = 'tests.urls_without_i18n_patterns',
|
||||||
|
)
|
||||||
|
def test_get_admin_interface_languages_without_i18n_url_patterns(self):
|
||||||
|
context = Context({
|
||||||
|
'request': self.request_factory.get('/en/admin/'),
|
||||||
|
})
|
||||||
|
languages = templatetags.get_admin_interface_languages(context)
|
||||||
|
self.assertEqual(languages, None)
|
||||||
|
|
||||||
|
@override_settings(
|
||||||
|
LANGUAGES = (
|
||||||
|
('en', 'English'),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
def test_get_admin_interface_languages_without_multiple_languages(self):
|
||||||
|
context = Context({
|
||||||
|
'request': self.request_factory.get('/en/admin/'),
|
||||||
|
})
|
||||||
|
languages = templatetags.get_admin_interface_languages(context)
|
||||||
|
self.assertEqual(languages, None)
|
||||||
|
|
||||||
|
def test_get_admin_interface_languages_without_request(self):
|
||||||
|
context = Context({})
|
||||||
|
languages = templatetags.get_admin_interface_languages(context)
|
||||||
|
self.assertEqual(languages, None)
|
||||||
|
|
||||||
|
def test_get_admin_interface_languages_without_language_prefix_in_url(self):
|
||||||
|
context = Context({
|
||||||
|
'request': self.request_factory.get('/admin/'),
|
||||||
|
})
|
||||||
|
languages = templatetags.get_admin_interface_languages(context)
|
||||||
|
self.assertEqual(languages, None)
|
||||||
|
|
||||||
def test_get_theme(self):
|
def test_get_theme(self):
|
||||||
Theme.objects.all().delete()
|
Theme.objects.all().delete()
|
||||||
context = Context({})
|
context = Context({})
|
||||||
|
|||||||
@@ -0,0 +1,20 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
import django
|
||||||
|
from django.contrib import admin
|
||||||
|
if django.VERSION < (2, 0):
|
||||||
|
from django.conf.urls import include, url as re_path
|
||||||
|
else:
|
||||||
|
from django.urls import include, re_path
|
||||||
|
from django.conf.urls.i18n import i18n_patterns
|
||||||
|
|
||||||
|
|
||||||
|
urlpatterns = []
|
||||||
|
urlpatterns += [
|
||||||
|
re_path(r'^i18n/', include('django.conf.urls.i18n')),
|
||||||
|
]
|
||||||
|
urlpatterns += i18n_patterns(
|
||||||
|
re_path(r'^admin/', admin.site.urls),
|
||||||
|
)
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
import django
|
||||||
|
from django.contrib import admin
|
||||||
|
if django.VERSION < (2, 0):
|
||||||
|
from django.conf.urls import url as re_path
|
||||||
|
else:
|
||||||
|
from django.urls import re_path
|
||||||
|
|
||||||
|
|
||||||
|
urlpatterns = [
|
||||||
|
re_path(r'^admin/', admin.site.urls),
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user