Small, clean code with a lazy view dispatcher and class based views for Django.
Project description
aino-utkik provides minimalistic class based views for Django focusing on common usage, readability and convienience.
For Django 1.3 or earlier use 0.7.8
Example:
# urls.py
from utkik.dispatch import *
urlpatterns = patterns('',
(r'^(?P<slug>[-\w]+)/$', 'news.NewsDetailView'),
(r'^$', 'news.NewsListView'),
)
# news/views.py
from django.shortcuts import get_object_or_404
from news.models import News
from utkik import View
class NewsDetailView(View):
template_name = 'news/news_detail.html'
def get(self, slug):
self.c.news = get_object_or_404(News.objects, slug=slug)
class NewsListView(View):
template_name = 'news/news_list.html'
def get(self):
self.c.news_list = News.objects.all()
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
aino-utkik-0.7.10.tar.gz
(7.9 kB
view details)
File details
Details for the file aino-utkik-0.7.10.tar.gz.
File metadata
- Download URL: aino-utkik-0.7.10.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59944579f69ed107d9908cc4ec937f6fab3a50f854c8715779f1aabe96cc52f4
|
|
| MD5 |
78082be654772438f5d61996088ed687
|
|
| BLAKE2b-256 |
cc5f101af594c71247704e581343d511adfc4a1ad37e30c7729fa31f2f8ee5f7
|