We only care about year and month for DateField, and always set to day to 1, it's a Django Widget allow you select the year and month.
Project description
django-yearmonth-widget
We only care about year and month for DateField, and always set to day to 1, it's a Django Widget allow you select the year and month.
Install
pip install django-yearmonth-widget
Usage
pro/settings.py
INSTALLED_APPS = [
...
'django_static_jquery3',
'django_yearmonth_widget',
...
]
app/admin.py
from django.contrib import admin
from django import forms
from django_yearmonth_widget.widgets import DjangoYearMonthWidget
from .models import Book
class BookForm(forms.ModelForm):
class Meta:
model = Book
exclude = []
widgets = {
"published_yearmonth": DjangoYearMonthWidget(),
}
class BookAdmin(admin.ModelAdmin):
form = BookForm
list_display = ["name", "published_time"]
admin.site.register(Book, BookAdmin)
Note:
- Create a ModelForm, and set new widget for the field.
DjangoYearMonthWidget Init parameters
- years: list of year numbers. Default to None.
- If years provided, parameters prev_years and next_years are ignored.
- prev_years: int, default to 10.
- next_years: int, default to 0.
- Use prev_years, next_years to set the year range based on today's year.
- prev_years means the begining year is now.year - prev_years. If today's year is 2020 and the prev_years=10, so that the final years is start at 2010.
- next_years means the ending year is now.year + next_years. If today's year is 2020 and the next_years=10, so that the final years is end at 2030.
- day_value: int, default to 1.
Releases
v0.1.0 2020/03/10
- First release.
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
File details
Details for the file django-yearmonth-widget-0.1.0.tar.gz
.
File metadata
- Download URL: django-yearmonth-widget-0.1.0.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f1803d5c7ccf63afde3cb742d649f60f5840947ceac9701f99a08d4969d035d |
|
MD5 | f37390ba84b37e44d6c2e6a88ca4e7b3 |
|
BLAKE2b-256 | dae078a58c33c402d7d753f0fe8b0cfcdcea6010e3e3597e8b048ba5e631c456 |