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.
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 BaseView
class NewsDetailView(BaseView):
template = 'news/news_detail.html'
def get(self, slug):
self.c.news = get_object_or_404(News.objects, slug=slug)
class NewsListView(BaseView):
template = '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.2.2.tar.gz
(5.5 kB
view details)
File details
Details for the file aino-utkik-0.2.2.tar.gz.
File metadata
- Download URL: aino-utkik-0.2.2.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e60fc3980401164d49ab2fb3c3be1324ea6034bc887f3487232c31c5c27c65a9
|
|
| MD5 |
231032889aa5b17f16e144ea3eb8c7be
|
|
| BLAKE2b-256 |
ca232d3045ef5571ba6a321da852473f3a741a007b951c39f0668ae5a06e89ca
|