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.

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 = 'news/news_detail.html'

    def get(self, slug):
        self.c.news = get_object_or_404(News.objects, slug=slug)


class NewsListView(View):
    template = '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.3.3.tar.gz (7.0 kB view details)

Uploaded Source

File details

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

File metadata

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

File hashes

Hashes for aino-utkik-0.3.3.tar.gz
Algorithm Hash digest
SHA256 50fe658ec6aec959a438cc07e3fda76bb91762a65b50c486ba59ba5a7a1f0e54
MD5 5639bae6912bbef815c400d7ffcf6dd3
BLAKE2b-256 e54a610b0389f8afcecb112f1f161ca8c37562db827ad8a677a2765594d01639

See more details on using hashes here.

Supported by

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