Sponsor
Now Playing
- Alix Perez – I'm Free 2 hours ago
- Alix Perez – Intersections 2 hours ago
- Alix Perez – Forsaken 2 hours ago
- Glen E Ston – Ouroboros (Original Mix) 3 hours ago
- Black Sun Empire – Everything 3 hours ago
Posts tagged Django
Django Books For Sale
March 30, 2009
That’s right! I have a heap of Django books up for sale! Along with some other web related books. They didn’t sell on Ebay Australia, and I couldn’t be bothered constantly paying for ebay’s charges. If you want to see my selling history on ebay,... [+]
0
30Mar
Django 1.0 Template Development
January 6, 2009
Yes, another Django book i purchased. But this time not over Amazon, but direct from the publisher! Cheaper! Way Cheaper!
0
06Jan
Categories & Subcategories With...
December 11, 2008
class Category(models.Model): name = models.CharField(core=True, maxlength=200) slug = models.SlugField(prepopulate_from=('name',)) parent = models.ForeignKey('self', blank=True, null=True, related_name='child') description = models.TextField(blank=True,help_text="Optional") class Admin: list_display = ('name', '_parents_repr') def __str__(self): p_list = self._recurse_for_parents(self) p_list.append(self.name) return self.get_separator().join(p_list) def get_absolute_url(self): if self.parent_id: return "/tag/%s/%s/" % (self.parent.slug, self.slug) else: return "/tag/%s/" %... [+]
0
11Dec
Django IRC & Mibbit.com
November 11, 2008
If you would like to get some realtime Django help from the experts i recommend you have a look at the Django IRC channel. You can connect @ Django IRC Channel Server Address: irc.freenode.net Channel: #django If you are new to Django i recommend that... [+]
0
11Nov
Practical Django Projects
November 10, 2008
Up to Chapter 5 of this book. Already i know what the deal is with views, have made a full admin panel which error checks all entries, has categories, tagging and can generate HTML! Whoa! So good. Just notice that you may need to use... [+]
0
10Nov
Practical Django Projects
November 7, 2008
It was this error that spent 2 hours of my day today: ImportError: No module named coltrane I had included my PythonPath entry manually into my MacOSX home directory via: vi .profile and entering: export PYTHONPATH=/Users/myname/mydjangodirectory:$PYTHONPATH This indeed works, but i was using a super... [+]
0
Django and Subversion Hourly Updates
August 30, 2008
So if you are developing with Django and python you may be running off the Django SVN trunk. It can be a pain constantly running the update command when you simply want to be up with the development. Of course you would run this on... [+]
0
30Aug
Django Part 2!
August 28, 2008
So i have been reading through the python and django books a bit more. The first one, Developing websites with Django was great, very project based, but it didn’t really go into the depth i needed in order to start programming my own websites. So... [+]
0
28Aug