pip install django-url-or-relative-url-field
This package extends default Django URLField to support relative URLs.
Install the python package django-url-or-relative-url-field from pip:
pip install django-url-or-relative-url-field
Alternatively, you can install download or clone this repo and call pip install -e .
.
Add to INSTALLED_APPS in your settings.py:
'url_or_relative_url_field',
Add field to the model:
from django.db import models
from url_or_relative_url_field.fields import URLOrRelativeURLField
class Redirect(models.Model):
url = URLOrRelativeURLField()
Now your model will accept both absolute and relative URLs into the url
field.
Git
Stars
5
Forks
3
Watchers
1
PyPi
Release | Date | |
---|---|---|
0.1.0 | 2018-03-13 | Download |