Tagged Questions

2
votes
1answer
35 views

Django ImageField passing a callable to upload_to

I'm trying to pass a custom upload_to function to my models imageField but I'd like to define the function as a model function....is that possible? class MyModel(models.Model): ... image = ...
2
votes
1answer
68 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
114 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 ...
2
votes
0answers
90 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 ...
1
vote
1answer
46 views

Why can't I import a Django model from another source file?

I'm trying to import a model from a Django application and getting an error: ImportError at / cannot import name UserProfile Request Method: GET Request URL: http://localhost:8000/ Django Version: ...
1
vote
1answer
45 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
1answer
65 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 ...
0
votes
2answers
40 views

django - initialize model fields including manytomanyfields

All, I have a set related models: class Foo(models.Model): fooName = models.CharField() bars = models.ManyToManyField("Bar") class Bar(models.Model): barName = models.CharField() When ...
0
votes
1answer
42 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
33 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
64 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
19 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
64 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
68 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 ...