An improved URL selector to choose between internal models and external URLs
Project description
django-any-urlfield
The any_urlfield module provides an improved URL selector that supports both URLs to internal models and external URLs.
This addresses is a common challenge in CMS interfaces; where providing a URLField makes it hard to enter internal URLs, while providing a ModelChoiceField makes it too inflexible. This package provides the both of both worlds.
For more details, see the documentation at Read The Docs.
Screenshot
Installation
First install the module, preferably in a virtual environment:
pip install django-any-urlfield
Add the module to the installed apps:
INSTALLED_APPS += (
'any_urlfield',
)
Usage
Add the field to a Django model:
from django.db import models
from any_urlfield.models import AnyUrlField
class MyModel(models.Model):
title = models.CharField("Title", max_length=200)
url = AnyUrlField("URL")
By default, the AnyUrlField only supports linking to external pages.
Register any model that the AnyUrlField should support linking to:
from any_urlfield.models import AnyUrlField
AnyUrlField.register_model(Article)
Now, the AnyUrlField offers users a dropdown field to directly select an article.
The default field is a django.forms.models.ModelChoiceField field with a django.forms.widgets.Select widget. This can be customized using the form_field and widget parameters:
from any_urlfield.models import AnyUrlField
from any_urlfield.forms import SimpleRawIdWidget
AnyUrlField.register_model(Article, widget=SimpleRawIdWidget(Article))
That will display the Article model as raw input field with a browse button.
Contributing
This module is designed to be generic. In case there is anything you didn’t like about it, or think it’s not flexible enough, please let us know. We’d love to improve it!
If you have any other valuable contribution, suggestion or idea, please let us know as well because we will look into it. Pull requests are welcome too. :-)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-any-urlfield-2.5.1.tar.gz
.
File metadata
- Download URL: django-any-urlfield-2.5.1.tar.gz
- Upload date:
- Size: 26.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/38.5.2 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.6.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41a1837e6363abb90f1af7ed1cdc397c89f8476335342b8a27d1db9f6078c829 |
|
MD5 | 79bda4683baf2a3a44d55e5a6428edb8 |
|
BLAKE2b-256 | 62924733e5456727c1de8ec9fc989fd58dbce19c478deb47a4b02a812886279e |
File details
Details for the file django_any_urlfield-2.5.1-py2.py3-none-any.whl
.
File metadata
- Download URL: django_any_urlfield-2.5.1-py2.py3-none-any.whl
- Upload date:
- Size: 28.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/38.5.2 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.6.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2efe60ebabd5a27838b8fcfb6b2537f3464aa48f68acbc1ed3b8cc89111f3742 |
|
MD5 | 44eeec098013d42d48022d1d380ee5e4 |
|
BLAKE2b-256 | 354521950db08e8545f192545201dccf4db134a94c5ed5293a7e144ccda81a78 |