Blog : Ryan Berg - 0 views
A Better Paginator in Django | David Cramer's Blog - 0 views
Code | David Cramer's Blog - 0 views
Big list of Django tips (and some python tips too) | Surfing in Kansas - 0 views
-
Big list of Django tips
-
Writing managers is really simple, and they provide a better user interface to your code. This code snippet simply adds a latest() method to the default objects manager class ForecastDayManager(Manager): def __init__(self, *args, **kwargs): super(ForecastDayManager, self).__init__(*args, **kwargs) def latest(self): return self.get_query_set().order_by('forecast_date')[0] It can be called ForecastDay.objects.latest(). This is a trivial example, but there is a lot of power that lies in this functionality.
Reusable App Conventions | oebfare - 0 views
newforms-admin Migration and Screencast | oebfare - 0 views
Tumblelog in Django - 0 views
Django and Relativity - 0 views
Screencast: Django Command Extensions | Surfing in Kansas - 1 views
-
Django Command Extensions from Eric Holscher on Vimeo.
On Static Media and Django | Django Web Development - Lincoln Loop - 0 views
Using Amazon S3 with Django | patrickbeeson.com - 0 views
Digg-style pagination in Django | Ryan Kanno: The diary of an Enginerd in Hawaii - 0 views
‹ Previous
21 - 40 of 57
Next ›
Showing 20▼ items per page