Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
53 views

differentiate null=True, blank=True in django

When we add a database field in django we generally write models.CharField(max_length=100, null=True, blank=True) the same is done with ForeignKey, DecimalField etc. What is the basic difference in ...
2
votes
1answer
92 views

Django — can't import my own models

I have several Django apps, all within one project directory. Each app has a models.py file with a bunch of models. I have been importing models from one app to the other with no problem, specifically ...
1
vote
1answer
43 views

How to display a value where there is no none in Django admin?

Is there an djangtastic way to display a default value in admin when there isn't a value? Like 'n/a', but not to save that to the database? When I set all the fields in the model below to readonly in ...
1
vote
0answers
82 views

django: why is getting model's .id field in template slow?

I have a template which ends up outputting about 700 input elements like this one: <input class="ticket" size="3" maxlength="15" type="text" name="{{ ticket.id }}"> Together with calling the ...
0
votes
1answer
22 views

Django DateTimeField save

I have a model class Unit(models.Model): date = models.DateTimeField() name = models.CharField(max_length = 128) Then I have a view with js jquery ui datepicker. Then I have an ajax post ...
0
votes
2answers
45 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
2answers
31 views

Calling a model's method from outside Django

I have a Django model with some static methods. I'd like to call the methods from outside the application (cronjob). The model I have: class Job(models.Job): #Irrelevant information ...
0
votes
2answers
61 views

which is best ForeignKey or choices ? what is the different?

I want Create Car Advertising website and I have many list like year,brand and status which is the best use Category OR choices with list and Taking into account the I wanna make extended search ...
0
votes
1answer
16 views

Differentiate unique_together validation error

I've got a model with a unique_together constraint. class Postit(models.Model): """Represents a single post-it.""" x_axis = models.PositiveIntegerField(_('X axis')) y_axis = ...
0
votes
1answer
49 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 ...
0
votes
2answers
65 views

Django. Unique option for model field doesn't work

I set option 'primary_key' for object Name field. After that I create tables for models via command 'syncdb'. Then set 'unique' option to True. Ran 'syncdb'. But when I work with my object form there ...
0
votes
1answer
53 views

For extended information, should I use Django's Multi-table Inheritance or an explicit OneToOneField

I have some fields on a model that won't always be filled in (e.g., the actual completion date and costs until the project is over). Because of this, I thought I'd split the model into two: Model ...