django-redirects fills the gap of django.contrib.redirects offering redirects with full control.
- Sites framework support.
- Custom redirect type:
301,302,303,307,308. - Custom redirect match condition:
EXACT,PREFIXorREGEX. - Regex support, match and replace groups using group reference:
$1,$2,$3, ... - Counter to monitor requests count handled by each redirect.
- Admin integration with list filters and the possibility to test the redirect.
- Run
pip install django-redirects. - Add
redirectstosettings.INSTALLED_APPS. - Add
redirects.middleware.RedirectMiddlewaretosettings.MIDDLEWAREbefore other middlewares. - Run
python manage.py migrate. - Restart your application server.
# clone repository
git clone https://github.com/fabiocaccamo/django-redirects.git && cd django-redirects
# create virtualenv and activate it
python -m venv venv && . venv/bin/activate
# upgrade pip
python -m pip install --upgrade pip
# install requirements
pip install -r requirements.txt -r requirements-test.txt
# install pre-commit to run formatters and linters
pre-commit install --install-hooks
# run tests
tox
# or
python runtests.py
# or
python -m django test --settings "tests.settings"Released under MIT License.
-
django-admin-interface- the default admin interface made customizable by the admin itself. popup windows replaced by modals. 🧙 ⚡ -
django-cache-cleaner- clear the entire cache or individual caches easily using the admin panel or management command. 🧹✨ -
django-colorfield- simple color field for models with a nice color-picker in the admin. 🎨 -
django-email-validators- no more invalid or disposable emails in your database. ✉️ ✅ -
django-extra-settings- config and manage typed extra settings using just the django admin. ⚙️ -
django-maintenance-mode- shows a 503 error page when maintenance-mode is on. 🚧 🛠️ -
django-treenode- probably the best abstract model / admin for your tree based stuff. 🌳 -
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- encode/decode Italian fiscal codes - codifica/decodifica del Codice Fiscale. 🇮🇹 💳 -
python-fontbro- friendly font operations. 🧢 -
python-fsutil- file-system utilities for lazy devs. 🧟♂️