Compare commits
22 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a302c87724 | |||
| d61ef86dd6 | |||
| 071fe476a6 | |||
| 9b611d1dcb | |||
| 61c1720fd7 | |||
| 962267de1d | |||
| f632929183 | |||
| 308858a0d0 | |||
| db7e0770b2 | |||
| 195ef2c44f | |||
| 48d3952e68 | |||
| 96570502cc | |||
| 759b5a6f49 | |||
| 92710be337 | |||
| c721359eea | |||
| 79ea1729cc | |||
| 8c4520d4b7 | |||
| b703f77f80 | |||
| 13b1d9f15f | |||
| e989e623db | |||
| 2113d009f4 | |||
| e967d09c8b |
+18
@@ -120,6 +120,22 @@ jobs:
|
|||||||
env: TOX_ENV=py38-djmaster-sqlite
|
env: TOX_ENV=py38-djmaster-sqlite
|
||||||
- python: "3.8"
|
- python: "3.8"
|
||||||
env: TOX_ENV=py38-djmaster-postgres
|
env: TOX_ENV=py38-djmaster-postgres
|
||||||
|
# - python: "3.9"
|
||||||
|
# env: TOX_ENV=py39-dj22-sqlite
|
||||||
|
# - python: "3.9"
|
||||||
|
# env: TOX_ENV=py39-dj22-postgres
|
||||||
|
# - python: "3.9"
|
||||||
|
# env: TOX_ENV=py39-dj30-sqlite
|
||||||
|
# - python: "3.9"
|
||||||
|
# env: TOX_ENV=py39-dj30-postgres
|
||||||
|
# - python: "3.9"
|
||||||
|
# env: TOX_ENV=py39-dj31-sqlite
|
||||||
|
# - python: "3.9"
|
||||||
|
# env: TOX_ENV=py39-dj31-postgres
|
||||||
|
# - python: "3.9"
|
||||||
|
# env: TOX_ENV=py39-djmaster-sqlite
|
||||||
|
# - python: "3.9"
|
||||||
|
# env: TOX_ENV=py39-djmaster-postgres
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- env: TOX_ENV=py36-djmaster-sqlite
|
- env: TOX_ENV=py36-djmaster-sqlite
|
||||||
- env: TOX_ENV=py36-djmaster-postgres
|
- env: TOX_ENV=py36-djmaster-postgres
|
||||||
@@ -127,6 +143,8 @@ jobs:
|
|||||||
- env: TOX_ENV=py37-djmaster-postgres
|
- env: TOX_ENV=py37-djmaster-postgres
|
||||||
- env: TOX_ENV=py38-djmaster-sqlite
|
- env: TOX_ENV=py38-djmaster-sqlite
|
||||||
- env: TOX_ENV=py38-djmaster-postgres
|
- env: TOX_ENV=py38-djmaster-postgres
|
||||||
|
# - env: TOX_ENV=py39-djmaster-sqlite
|
||||||
|
# - env: TOX_ENV=py39-djmaster-postgres
|
||||||
install:
|
install:
|
||||||
- pip install tox
|
- pip install tox
|
||||||
services:
|
services:
|
||||||
|
|||||||
@@ -4,6 +4,27 @@ 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.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
|
||||||
|
- Added persian language. #98
|
||||||
|
- Fixed logo max-width on small screens.
|
||||||
|
- Fixed content max-width when nav-sidebar is collapsed.
|
||||||
|
- Fixed changelist max-width on medium screens.
|
||||||
|
|
||||||
## [0.13.5](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.13.5) - 2020-09-15
|
## [0.13.5](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.13.5) - 2020-09-15
|
||||||
- Fixed loaddata error with initial_data.json fixture. #97
|
- Fixed loaddata error with initial_data.json fixture. #97
|
||||||
- Fixed tests warning (admin.W411).
|
- Fixed tests warning (admin.W411).
|
||||||
|
|||||||
@@ -141,8 +141,10 @@ Released under [MIT License](LICENSE.txt).
|
|||||||
|
|
||||||
- [`django-maintenance-mode`](https://github.com/fabiocaccamo/django-maintenance-mode) - shows a 503 error page when maintenance-mode is on. 🚧 🛠️
|
- [`django-maintenance-mode`](https://github.com/fabiocaccamo/django-maintenance-mode) - shows a 503 error page when maintenance-mode is on. 🚧 🛠️
|
||||||
|
|
||||||
|
- [`django-redirects`](https://github.com/fabiocaccamo/django-redirects) - redirects with full control. ↪️
|
||||||
|
|
||||||
- [`django-treenode`](https://github.com/fabiocaccamo/django-treenode) - probably the best abstract model / admin for your tree based stuff. 🌳
|
- [`django-treenode`](https://github.com/fabiocaccamo/django-treenode) - probably the best abstract model / admin for your tree based stuff. 🌳
|
||||||
|
|
||||||
- [`python-benedict`](https://github.com/fabiocaccamo/python-benedict) - dict subclass with keylist/keypath support, I/O shortcuts (Base64, CSV, JSON, TOML, XML, YAML, pickle, query-string) and many utilities. 📘 👼
|
- [`python-benedict`](https://github.com/fabiocaccamo/python-benedict) - dict subclass with keylist/keypath support, I/O shortcuts (base64, csv, json, pickle, plist, query-string, toml, xml, yaml) and many utilities. 📘
|
||||||
|
|
||||||
- [`python-codicefiscale`](https://github.com/fabiocaccamo/python-codicefiscale) - encode/decode Italian fiscal codes - codifica/decodifica del Codice Fiscale. 🇮🇹 💳
|
- [`python-codicefiscale`](https://github.com/fabiocaccamo/python-codicefiscale) - encode/decode Italian fiscal codes - codifica/decodifica del Codice Fiscale. 🇮🇹 💳
|
||||||
|
|||||||
@@ -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', ),
|
||||||
|
|||||||
Binary file not shown.
@@ -0,0 +1,205 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# Amir Ajorloo <amirajorloo@gmail.com>, 2020.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: django-admin-interface\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2020-10-12 19:23+0330\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: Amir Ajorloo <amirajorloo@gmail.com>\n"
|
||||||
|
"Language-Team: Farsi <LL@li.org>\n"
|
||||||
|
"Language: Farsi"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
|
#: admin_interface/admin.py:21
|
||||||
|
msgid "Environment"
|
||||||
|
msgstr "محیط"
|
||||||
|
|
||||||
|
#: admin_interface/admin.py:30
|
||||||
|
msgid "Language chooser"
|
||||||
|
msgstr "انتخاب زبان"
|
||||||
|
|
||||||
|
#: admin_interface/admin.py:37
|
||||||
|
msgid "Logo"
|
||||||
|
msgstr "لوگو"
|
||||||
|
|
||||||
|
#: admin_interface/admin.py:45
|
||||||
|
msgid "Favicon"
|
||||||
|
msgstr "آیکون تب"
|
||||||
|
|
||||||
|
#: admin_interface/admin.py:49
|
||||||
|
msgid "Title"
|
||||||
|
msgstr "عنوان"
|
||||||
|
|
||||||
|
#: admin_interface/admin.py:57
|
||||||
|
msgid "Header"
|
||||||
|
msgstr "هدر"
|
||||||
|
|
||||||
|
#: admin_interface/admin.py:66
|
||||||
|
msgid "Breadcrumbs / Module headers"
|
||||||
|
msgstr "مسیر صفحه"
|
||||||
|
|
||||||
|
#: admin_interface/admin.py:76
|
||||||
|
msgid "Generic Links"
|
||||||
|
msgstr "لینکهای عمومی"
|
||||||
|
|
||||||
|
#: admin_interface/admin.py:83
|
||||||
|
msgid "Save Buttons"
|
||||||
|
msgstr "دکمههای ذخیره"
|
||||||
|
|
||||||
|
#: admin_interface/admin.py:91
|
||||||
|
msgid "Delete Buttons"
|
||||||
|
msgstr "دکمههای حذف"
|
||||||
|
|
||||||
|
#: admin_interface/admin.py:99
|
||||||
|
msgid "Related Modal"
|
||||||
|
msgstr "مدلهای مرتبط"
|
||||||
|
|
||||||
|
#: admin_interface/admin.py:109
|
||||||
|
msgid "List Filter"
|
||||||
|
msgstr "فیلترهای لیست"
|
||||||
|
|
||||||
|
#: admin_interface/admin.py:113
|
||||||
|
msgid "Recent Actions"
|
||||||
|
msgstr "فعالیتهای اخیر"
|
||||||
|
|
||||||
|
#: admin_interface/apps.py:11
|
||||||
|
msgid "Admin Interface"
|
||||||
|
msgstr "ظاهر ادمین"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:72 admin_interface/models.py:116
|
||||||
|
#: admin_interface/models.py:135
|
||||||
|
msgid "name"
|
||||||
|
msgstr "نام"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:75 admin_interface/models.py:132
|
||||||
|
#: admin_interface/models.py:253
|
||||||
|
msgid "active"
|
||||||
|
msgstr "فعال"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:79
|
||||||
|
#: admin_interface/templates/admin/base_site.html:6
|
||||||
|
#: admin_interface/templates/admin/base_site.html:60
|
||||||
|
msgid "Django administration"
|
||||||
|
msgstr "مدیریت جنگو"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:81
|
||||||
|
msgid "title"
|
||||||
|
msgstr "عنوان"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:87 admin_interface/models.py:102
|
||||||
|
#: admin_interface/models.py:122
|
||||||
|
msgid "color"
|
||||||
|
msgstr "رنگ"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:90 admin_interface/models.py:105
|
||||||
|
#: admin_interface/models.py:289
|
||||||
|
msgid "visible"
|
||||||
|
msgstr "نمایان"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:95
|
||||||
|
msgid "Leave blank to use the default Django logo"
|
||||||
|
msgstr "برای نمایش لوگوی پیش فرض، خالی بگذارید."
|
||||||
|
|
||||||
|
#: admin_interface/models.py:96
|
||||||
|
msgid "logo"
|
||||||
|
msgstr "لوگو"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:110
|
||||||
|
msgid "(.ico|.png|.gif - 16x16|32x32 px)"
|
||||||
|
msgstr "(.ico|.png|.gif - 16x16|32x32 px)"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:111
|
||||||
|
msgid "favicon"
|
||||||
|
msgstr "آیکون تب"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:120
|
||||||
|
msgid ""
|
||||||
|
"(red: #E74C3C, orange: #E67E22, yellow: #F1C40F, green: #2ECC71, blue: "
|
||||||
|
"#3498DB)"
|
||||||
|
msgstr ""
|
||||||
|
"(قرمز: #E74C3C, نارنجی: #E67E22, زرد: #F1C40F, سبز: #2ECC71, آبی: "
|
||||||
|
"#3498DB)"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:125
|
||||||
|
msgid "visible in header (marker and name)"
|
||||||
|
msgstr "نمایان در هدر"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:128
|
||||||
|
msgid "visible in favicon (marker)"
|
||||||
|
msgstr "نمایان در آیکون تب"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:134
|
||||||
|
msgid "code"
|
||||||
|
msgstr "کد"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:141
|
||||||
|
msgid "display"
|
||||||
|
msgstr "نمایش"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:148 admin_interface/models.py:173
|
||||||
|
#: admin_interface/models.py:214 admin_interface/models.py:233
|
||||||
|
#: admin_interface/models.py:259
|
||||||
|
msgid "background color"
|
||||||
|
msgstr "رنگ پسزمینه"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:154 admin_interface/models.py:179
|
||||||
|
#: admin_interface/models.py:226 admin_interface/models.py:245
|
||||||
|
#: admin_interface/models.py:249
|
||||||
|
msgid "text color"
|
||||||
|
msgstr "رنگ متن"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:160 admin_interface/models.py:185
|
||||||
|
#: admin_interface/models.py:201
|
||||||
|
msgid "link color"
|
||||||
|
msgstr "رنگ لینک"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:166 admin_interface/models.py:191
|
||||||
|
#: admin_interface/models.py:207
|
||||||
|
msgid "link hover color"
|
||||||
|
msgstr "رنگ لینک در حالت هاور"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:194 admin_interface/models.py:279
|
||||||
|
msgid "rounded corners"
|
||||||
|
msgstr "گوشههای خمیده"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:220 admin_interface/models.py:239
|
||||||
|
msgid "background hover color"
|
||||||
|
msgstr "رنگ پسزمینه در حالت هاور"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:276
|
||||||
|
msgid "background opacity"
|
||||||
|
msgstr "شفافیت بکگراند"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:282
|
||||||
|
msgid "close button visible"
|
||||||
|
msgstr "دکمه بستن نمایان باشد"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:286
|
||||||
|
msgid "use dropdown"
|
||||||
|
msgstr "استفاده از دراپ داون"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:298
|
||||||
|
msgid "Theme"
|
||||||
|
msgstr "تم"
|
||||||
|
|
||||||
|
#: admin_interface/models.py:299
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "تمها"
|
||||||
|
|
||||||
|
#: admin_interface/templates/admin/filter.html:13
|
||||||
|
#: admin_interface/templates/admin_interface/dropdown_filter.html:4
|
||||||
|
#, python-format
|
||||||
|
msgid " By %(filter_title)s "
|
||||||
|
msgstr " توسط %(filter_title)s "
|
||||||
|
|
||||||
|
#: admin_interface/templates/admin/popup_response.html:3
|
||||||
|
msgid "Popup closing..."
|
||||||
|
msgstr "پاپ آپ در حال بسته شدن..."
|
||||||
@@ -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'))
|
||||||
|
|||||||
@@ -9,6 +9,7 @@
|
|||||||
{% block extrastyle %}
|
{% block extrastyle %}
|
||||||
{% get_admin_interface_theme as theme %}
|
{% get_admin_interface_theme as theme %}
|
||||||
{% get_admin_interface_version as version %}
|
{% get_admin_interface_version as version %}
|
||||||
|
{% get_current_language as current_lang %}
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/*
|
/*
|
||||||
django-admin-interface {{ version }}
|
django-admin-interface {{ version }}
|
||||||
@@ -26,12 +27,18 @@ https://github.com/fabiocaccamo/django-admin-interface
|
|||||||
{% 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" %}
|
{% include "admin_interface/css/json-widget.css" %}
|
||||||
|
{% include "admin_interface/css/rtl.css" %}
|
||||||
|
|
||||||
{% if theme.css %}
|
{% if theme.css %}
|
||||||
{{ theme.css|safe }}
|
{{ theme.css|safe }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
{% if current_lang == 'fa' %}
|
||||||
|
<link href="https://cdn.jsdelivr.net/gh/rastikerdar/vazir-font@v26.0.2/dist/font-face.css" rel="stylesheet" type="text/css" />
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block blockbots %}
|
{% block blockbots %}
|
||||||
|
|||||||
@@ -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;
|
||||||
@@ -91,6 +94,12 @@
|
|||||||
display:inline-block !important; /* override inline display:none; */
|
display:inline-block !important; /* override inline display:none; */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width:400px) {
|
||||||
|
.admin-interface #branding h1 img.logo {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.admin-interface #branding h1 span {
|
.admin-interface #branding h1 span {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
@@ -203,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;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -243,13 +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;
|
}
|
||||||
|
|
||||||
|
@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 {
|
||||||
@@ -294,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;
|
||||||
}
|
}
|
||||||
@@ -335,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 */
|
||||||
@@ -391,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,
|
||||||
@@ -420,40 +446,15 @@ body.admin-interface .paginator a.showall:visited {
|
|||||||
left: 0px;
|
left: 0px;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
.admin-interface #main:not(.shifted) > .content {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
.admin-interface.change-list:not(.popup) #main.shifted > .content,
|
.admin-interface.change-list:not(.popup) #main.shifted > .content,
|
||||||
.admin-interface.change-form:not(.popup) #main.shifted > .content {
|
.admin-interface.change-form:not(.popup) #main.shifted > .content {
|
||||||
max-width: calc(100% - 360px);
|
max-width: calc(100% - 360px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 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;
|
||||||
@@ -463,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,28 @@
|
|||||||
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;
|
||||||
|
}
|
||||||
|
/* 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 +368,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;
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
[dir="rtl"] .admin-interface,
|
||||||
|
[dir="rtl"] .admin-interface * {
|
||||||
|
font-family: 'Vazir', sans-serif !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
[dir="rtl"] .admin-interface .main .toggle-nav-sidebar.sticky {
|
||||||
|
left: auto !important;
|
||||||
|
right: 0px !important;
|
||||||
|
margin-right: 0px !important;
|
||||||
|
margin-left: 10px;
|
||||||
|
border: 1px solid #eaeaea !important;
|
||||||
|
border-right: none !important;
|
||||||
|
border-top-right-radius: 0px !important;
|
||||||
|
border-bottom-right-radius: 0px !important;
|
||||||
|
border-top-left-radius: 4px;
|
||||||
|
border-bottom-left-radius: 4px;
|
||||||
|
box-shadow: -4px 2px 8px -2px #DBDBDB !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
[dir="rtl"] .admin-interface #main.shifted > #toggle-nav-sidebar {
|
||||||
|
right: 359px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
[dir="rtl"] .admin-interface #main > #nav-sidebar {
|
||||||
|
margin-right: -360px !important;
|
||||||
|
margin-left: 0px !important;
|
||||||
|
right: -320px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
[dir="rtl"] .admin-interface #main.shifted > #nav-sidebar {
|
||||||
|
border-left: 1px solid #eaeaea;
|
||||||
|
margin-right: 0px !important;
|
||||||
|
padding: 40px 0px 40px 40px !important;
|
||||||
|
}
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
__version__ = '0.13.5'
|
__version__ = '0.14.0'
|
||||||
|
|||||||
@@ -66,6 +66,7 @@ setup(
|
|||||||
'Programming Language :: Python :: 3.6',
|
'Programming Language :: Python :: 3.6',
|
||||||
'Programming Language :: Python :: 3.7',
|
'Programming Language :: Python :: 3.7',
|
||||||
'Programming Language :: Python :: 3.8',
|
'Programming Language :: Python :: 3.8',
|
||||||
|
'Programming Language :: Python :: 3.9',
|
||||||
'Topic :: Software Development :: Build Tools',
|
'Topic :: Software Development :: Build Tools',
|
||||||
],
|
],
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ envlist =
|
|||||||
py36-{dj18,dj19,dj110,dj111,dj20,dj21,dj22,dj30,dj31,djmaster}-{sqlite,postgres},
|
py36-{dj18,dj19,dj110,dj111,dj20,dj21,dj22,dj30,dj31,djmaster}-{sqlite,postgres},
|
||||||
py37-{dj20,dj21,dj22,dj30,dj31,djmaster}-{sqlite,postgres},
|
py37-{dj20,dj21,dj22,dj30,dj31,djmaster}-{sqlite,postgres},
|
||||||
py38-{dj22,dj30,dj31,djmaster}-{sqlite,postgres},
|
py38-{dj22,dj30,dj31,djmaster}-{sqlite,postgres},
|
||||||
|
py39-{dj22,dj30,dj31,djmaster}-{sqlite,postgres},
|
||||||
[testenv]
|
[testenv]
|
||||||
passenv = CI TRAVIS TRAVIS_*
|
passenv = CI TRAVIS TRAVIS_*
|
||||||
deps =
|
deps =
|
||||||
|
|||||||
Reference in New Issue
Block a user