Skip to main content

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 For Django 1.7 or later use 0.8.0 or later

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


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.9.1.tar.gz (7.9 kB view details)

Uploaded Source

File details

Details for the file aino-utkik-0.9.1.tar.gz.

File metadata

  • Download URL: aino-utkik-0.9.1.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for aino-utkik-0.9.1.tar.gz
Algorithm Hash digest
SHA256 bab8d30876277f8e421fb30951ef9458405ce708a27134e0902f7c8b05ecd347
MD5 3caf1429637b27b387352c78f674fc0e
BLAKE2b-256 e26db6d5cf2144566aaf65064e198668b4dd00dca12d02fd5eca79092062cf62

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page