A django-fied, templated version of Python's built-in HTMLCalendar.
Project description
An extension of the Python stdlib’s calendar.HTMLCalendar that makes use of Django templates to customise the output. After all, it’s pretty lame having hard-coded HTML output.
Usage:
Add 'tempocal' to your INSTALLED_APPS.
from tempocal import TemplatedCalendar
def myview(request, year, month):
calendar = TemplatedCalendar()
month_table = calendar.formatmonth(int(year), int(month))
return render_to_response('myview.html', {'month_table': month_table})
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-tempocal-0.1.2.tar.gz
(2.9 kB
view details)
File details
Details for the file django-tempocal-0.1.2.tar.gz
.
File metadata
- Download URL: django-tempocal-0.1.2.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 61d620599f552c5250009890f59fcca29dcc519dbd8cfb80335cbb82da7d5e3f |
|
MD5 | 2d893935b1cd2054f60fa887bbb03427 |
|
BLAKE2b-256 | 5215b4ae3990246a048d0b28d952ca3c412338480a9caad8e87b89819083d91a |