Tagged Questions

0
votes
2answers
46 views

Django model non db attribute

Folks I am making a silly mistake most likely. I have a model called Comment - a regular model - except I want to store an array within the model (the array is not stored in the db). Now my code ...
0
votes
1answer
50 views

Django Paginator raising TypeError

I'm trying to use the django pagination module including in the standard distribution version 1.3. When attempting to load a page that is currently controlled by pagination, if I do not include ...
0
votes
1answer
36 views

If statement looks to not extend to other templates

I have a problem with one of my if statements on my django template. Currently I have this on my base.html which extends to other templates: base.html {% if user.is_superuser %} <h2>Admin ...