active questions tagged django - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T17:39:28Z http://stackoverflow.com/feeds/tag/django http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1882616/pass-an-initial-value-to-a-django-form-field 0 Pass an initial value to a Django form field AP257 2009-12-10T17:29:14Z 2009-12-10T17:29:14Z <p>Django newbie question....</p> <p>I'm trying to write a search form and maintain the state of the input box between the search request and the search results.</p> <p>Here's my form:</p> <pre><code>class SearchForm(forms.Form): q = forms.CharField(label='Search: ', max_length=50) </code></pre> <p>And here's my views code:</p> <pre><code>def search(request, q=""): if (q != ""): q = q.strip() form = SearchForm(initial=q) #get results here... return render_to_response('things/search_results.html', {'things': things, 'form': form, 'query': q}) elif (request.method == 'POST'): # If the form has been submitted form = SearchForm(request.POST) if form.is_valid(): q = form.cleaned_data['q'] # Process the data in form.cleaned_data return HttpResponseRedirect('/things/search/%s/' % q) # Redirect after POST else: form = SearchForm() return render_to_response('things/search.html', { 'form': form, }) else: form = SearchForm() return render_to_response('things/search.html', { 'form': form, }) </code></pre> <p>But this gives me the error: </p> <pre><code>Caught an exception while rendering: 'unicode' object has no attribute 'get' </code></pre> <p>How can I pass the initial value? Various things I've tried seem to interfere with the request.POST parameter. </p> http://stackoverflow.com/questions/1882526/issue-with-django-form-when-submitted-using-jquery-form-plugin 0 Issue with Django form when submitted using jQuery form plugin jul 2009-12-10T17:16:28Z 2009-12-10T17:26:35Z <p>hi,</p> <p>when submitting my form using jQuery form plugin, the request received by the target view is different than that received when the form is submitted in the standard way (with no javascript), and my Django template does not render as expected. When submitted in the standard way, the template renders the form errors (the "form.[field_name].errors), while it doesn't when submitted via javascript. Using the javascript submit, how can I get a request allowing to render the template as it does using the standard submit?</p> <p>javascript code:</p> <pre><code>var is_geocoded = false; var interval; $(function(){ $("#submit").click(function() { var options = { beforeSubmit: getPosition, // pre-submit callback success: showResponse // post-submit callback }; // bind form using 'ajaxForm' $('#addresto').ajaxForm(options); }); }); function getPosition() { var geocoder = new GClientGeocoder(); var country = $("#id_country").val(); var city = $("#id_city").val(); var postal_code = $("#id_postal_code").val(); var street_number = $("#id_street_number").val(); var street = $("#id_street").val(); var address = street_number+", "+street+", "+postal_code+", "+city+", "+country; geocoder.getLatLng( address, function(point) { if (point) { $("#id_latitude").val(point.lat()) $("#id_longitude").val(point.lng()) is_geocoded = true; } else { is_geocoded = true; } }); interval = setInterval("doSubmit()", 500); return false; } function doSubmit() { if (is_geocoded) { $("#addresto").ajaxSubmit(); clearInterval(interval); } } </code></pre> <p>Django template code:</p> <pre><code>&lt;form id="addresto" action="" method="POST"&gt; &lt;p&gt;&lt;label for="id_name"&gt;Name:&lt;/label&gt;{{form.name.errors}} {{ form.name }} &lt;/p&gt; &lt;p&gt;&lt;label for="id_country"&gt;Country:&lt;/label&gt;{{form.country.errors}} {{ form.country }} &lt;/p&gt; &lt;!-- more stuff --&gt; &lt;p style="clear: both;"&gt;&lt;input type="Submit" id="submit" value="Submit" /&gt;&lt;/p&gt; &lt;/form&gt; </code></pre> <p>Here's the difference between the requests received by the view with standard submit and with javascript submit:</p> <pre><code>xxx@xxx:~$ diff javascript_submit standard_submit 7c7 &lt; 'CONTENT_TYPE': 'application/x-www-form-urlencoded; charset=UTF-8', --- &gt; 'CONTENT_TYPE': 'application/x-www-form-urlencoded', 24c24 &lt; 'HTTP_ACCEPT': '*/*', --- &gt; 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 28d27 &lt; 'HTTP_CACHE_CONTROL': 'no-cache', 33d31 &lt; 'HTTP_PRAGMA': 'no-cache', 36d33 &lt; 'HTTP_X_REQUESTED_WITH': 'XMLHttpRequest', 70c67 &lt; 'wsgi.input': &lt;socket._fileobject object at 0x891d064&gt;, --- &gt; 'wsgi.input': &lt;socket._fileobject object at 0x898b09c&gt;, </code></pre> http://stackoverflow.com/questions/1882469/how-do-i-transfer-data-in-csv-file-into-my-sqlite-database-in-django 0 How do I transfer data in .csv file into my sqlite database in django? Zeynel 2009-12-10T17:10:35Z 2009-12-10T17:23:24Z <p>This is my models.py</p> <pre><code>from django.db import models class School(models.Model): school = models.CharField(max_length=300) def __unicode__(self): return self.school class Lawyer(models.Model): firm_url = models.URLField('Bio', max_length=200) firm_name = models.CharField('Firm', max_length=100) first = models.CharField('First Name', max_length=50) last = models.CharField('Last Name', max_length=50) year_graduated = models.IntegerField('Year graduated') school = models.CharField(max_length=300) school = models.ForeignKey(School) class Meta: ordering = ('?',) def __unicode__(self): return self.first </code></pre> <p>And 2 sample rows from the csv file:</p> <pre><code>"http://www.graychase.com/aabbas,Gray &amp; Chase LLP, Amr A ,Abbas,The George Washington University Law School, 2005" "http://www.graychase.com/kadam,Gray &amp; Chase LLP, Karin ,Adam,Ernst Moritz Arndt University Greifswald, 2004" </code></pre> <p>Thank you.</p> http://stackoverflow.com/questions/1879614/django-buggy-template-tag-nonetype-object-has-no-attribute-source 0 Django buggy template tag - 'NoneType' object has no attribute 'source' Alvin 2009-12-10T08:55:48Z 2009-12-10T17:02:15Z <p>Wondering what is causing this? Had me stumped for some time, everything checks out in console when running in pieces</p> <p>as a side note: the template is using the same object in other places and displaying values - the object in template is also the same one loaded in the console below</p> <h2>error</h2> <p>'NoneType' object has no attribute 'source'</p> <h2>template</h2> <pre><code>{% form_transaction prop %} </code></pre> <h2>console value of prop</h2> <pre><code>&gt;&gt;&gt; prop = VacationHome.objects.get(pk=1) &gt;&gt;&gt; prop &lt;VacationHome: Samantha Dunn's vacation home at Close to Disney&gt; &gt;&gt;&gt; prop.sell 0 &gt;&gt;&gt; prop.rent 1 &gt;&gt;&gt; count = 0 &gt;&gt;&gt; string = '' &gt;&gt;&gt; type = [] &gt;&gt;&gt; num = 0 &gt;&gt;&gt; for tr in TRANSACTION_MODEL: ... if getattr(prop, tr, False): ... type.append(count+1) ... cur_count = count+1 ... string += '&lt;li&gt;&lt;label for="id_transaction_%s"&gt;&lt;input type="checkbox" name="transaction" value="%s" id="id_transaction_%s" /&gt;%s&lt;/label&gt;&lt;/li&gt;' % (count, cur_count, count, TRANSACTION_TITLE[count][1]) ... num += 1 ... count += 1 ... &gt;&gt;&gt; string '&lt;li&gt;&lt;label for="id_transaction_1"&gt;&lt;input type="checkbox" name="transaction" value="2" id="id_transaction_1" /&gt;Rental&lt;/label&gt;&lt;/li&gt;' </code></pre> <h2>DEFINITIONS</h2> <pre><code>TRANSACTION_TITLE = ( (1, 'Purchase'), (2, 'Rental'), (3, 'Exchange'), ) TRANSACTION_MODEL = ['sell', 'rent', 'exchange'] </code></pre> <h2>template tag</h2> <pre><code>@register.tag def prop_form_transaction(parser, token): try: tag_name, prop = token.split_contents() count = 0 string = '' type = [] num = 0 for tr in TRANSACTION_MODEL: if getattr(prop, tr, False): type.append(count+1) cur_count = count+1 string += '&lt;li&gt;&lt;label for="id_transaction_%s"&gt;&lt;input type="checkbox" name="transaction" value="%s" id="id_transaction_%s" /&gt;%s&lt;/label&gt;&lt;/li&gt;' % (count, cur_count, count, TRANSACTION_TITLE[count][1]) num += 1 count += 1 if num: if num &gt; 1: return string else: return '&lt;input type="hidden" name="transaction" value="'#+str(type[0])+'" /&gt;' except ValueError: raise template.TemplateSyntaxError, "%r tag requires exactly one argument" % token.contents.split()[0] </code></pre> <h2>views</h2> <pre><code>def property_list_city(request, type, city): city = str(city).replace('-', ' ') if type == 'timeshare': timeshares = Timeshare.objects.filter(resort__city__icontains=city).filter(available__icontains=True) resorts = Resort.objects.filter(city__icontains=city) objects = chain(timeshares, resorts) elif type == 'vacation_home': objects = VacationHome.objects.filter(city__icontains=city) else: objects = False context = { #line 265 'properties' : objects, 'title' : city, 'type' : type, } return render_to_response('properties/properties_list.html', context_instance=RequestContext(request, context)) </code></pre> <h2>traceback</h2> <pre><code>Environment: Request Method: GET Request URL: http://localhost:8000/properties/single/vacation_home/1/ Django Version: 1.1 Python Version: 2.6.4 Installed Applications: ['django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.humanize', 'properties', 'config', 'sorl.thumbnail', 'haystack', 'south', 'debug_toolbar'] Installed Middleware: ('django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'debug_toolbar.middleware.DebugToolbarMiddleware') Traceback: File "/usr/local/lib/python2.6/dist-packages/django/core/handlers/base.py" in get_response 92. response = callback(request, *callback_args, **callback_kwargs) File "/home/alvin/workspace/timeshare/properties/views.py" in property_single 272. return property_single_context(request, type, property) File "/home/alvin/workspace/timeshare/properties/views.py" in property_single_context 265. return render_to_response('properties/single.html', context, context_instance=RequestContext(request)) File "/usr/local/lib/python2.6/dist-packages/django/shortcuts/__init__.py" in render_to_response 20. return HttpResponse(loader.render_to_string(*args, **kwargs), **httpresponse_kwargs) File "/usr/local/lib/python2.6/dist-packages/django/template/loader.py" in render_to_string 103. t = get_template(template_name) File "/usr/local/lib/python2.6/dist-packages/django/template/loader.py" in get_template 82. template = get_template_from_string(source, origin, template_name) File "/usr/local/lib/python2.6/dist-packages/django/template/loader.py" in get_template_from_string 90. return Template(source, origin, name) File "/usr/local/lib/python2.6/dist-packages/django_debug_toolbar-0.8.1.alpha-py2.6.egg/debug_toolbar/panels/template.py" in new_template_init 28. old_template_init(self, template_string, origin, name) File "/usr/local/lib/python2.6/dist-packages/django/template/__init__.py" in __init__ 168. self.nodelist = compile_string(template_string, origin) File "/usr/local/lib/python2.6/dist-packages/django/template/__init__.py" in compile_string 189. return parser.parse() File "/usr/local/lib/python2.6/dist-packages/django/template/__init__.py" in parse 285. compiled_result = compile_func(self, token) File "/usr/local/lib/python2.6/dist-packages/django/template/loader_tags.py" in do_extends 169. nodelist = parser.parse() File "/usr/local/lib/python2.6/dist-packages/django/template/__init__.py" in parse 285. compiled_result = compile_func(self, token) File "/usr/local/lib/python2.6/dist-packages/django/template/loader_tags.py" in do_block 147. nodelist = parser.parse(('endblock', 'endblock %s' % block_name)) File "/usr/local/lib/python2.6/dist-packages/django/template/__init__.py" in parse 289. self.extend_nodelist(nodelist, compiled_result, token) File "/usr/local/lib/python2.6/dist-packages/django/template/debug.py" in extend_nodelist 56. node.source = token.source Exception Type: AttributeError at /properties/single/vacation_home/1/ Exception Value: 'NoneType' object has no attribute 'source' </code></pre> <p>Any ideas for where to look in debugging this are welcomed - big huge thanks in advance if you happen to know what is causing the error</p> http://stackoverflow.com/questions/1882275/how-to-restrict-models-foreign-keys-to-foreign-objects-having-the-same-property 0 How to restrict models foreign keys to foreign objects having the same property Ghislain Leveque 2009-12-10T16:36:09Z 2009-12-10T16:44:36Z <p>Here is my example :</p> <p>We have printers. We can define page formats that are linked to a specific printer then we define workflows that select a starting format (first page added to the printing job), a body format and an end format (last page added to the printing job).</p> <p>Start and End are not required (null and blank = True)</p> <p>I want to be sure that start, body and end will be formats of the same printer.</p> <pre><code>class Printer(models.Model): name = models.CharField(max_length = 20) class Format(models.Model): name = models.CharField(max_length = 20) format = models.TextField() printer = models.ForeignKey(Printer) class Workflow(models.Model): name = models.CharField(max_length = 20) startfmt = models.ForeignKey(Format, related_name = 'start_workflow', null = True, blank = True) bodyfmt = models.ForeignKey(Format, related_name = 'start_workflow') endfmt = models.ForeignKey(Format, related_name = 'start_workflow', null = True, blank = True) </code></pre> <p>So I need this model to validate that startfmt, bodyfmt and endfmt reference formats that share the same printer... how ?</p> http://stackoverflow.com/questions/1878268/django-for-web2py-developers 0 Django for web2py developers carrier 2009-12-10T02:21:50Z 2009-12-10T16:20:18Z <p>Now that I've gotten relatively familiar with web2py, I'd like to give Django a go.</p> <p>What are the main differences? </p> <p>What would be the most efficient way to get started taking into account web2py knowledge? (It must help to have some python application framework knowledge,no?)</p> <p><strong>EDIT</strong></p> <p>Also, if you've used both, can you offer an opinion on which you prefer and why?</p> http://stackoverflow.com/questions/1880505/imagemodel-and-baseprofile 0 ImageModel and BaseProfile unknown (yahoo) 2009-12-10T11:58:33Z 2009-12-10T16:04:35Z <p>Hello,</p> <p>I want to write an app that registers a userprofile and uploads an image at the same time, I've got my baseprofile registration done, now all I want is to upload a user image using ImageModel and link it to a user, how do I achieve this?. These are the models:</p> <pre><code>class BaseProfileImage(ImageModel): member = models.ForeignKey(BaseProfile) class Meta: ordering = ['-id'] </code></pre> <p>The manager:</p> <pre><code>class PublicManager(models.Manager): """ Returns only members where is_public is True. """ def get_query_set(self): return super(PublicManager, self).get_query_set().filter(is_public=True) </code></pre> <p>and the base profile:</p> <pre><code>class BaseProfile(models.Model): """ A simple profile field to hold the user's profile information. """ GENDER_MALE = 'M' GENDER_FEMALE = 'F' GENDERS = ( (GENDER_MALE, 'Male'), (GENDER_FEMALE, 'Female'), ) PROVINCE_CHOICES = ( ('Gauteng','Gauteng'), ('Limpopo','Limpopo'), ('Mpumalanga','Mpumalanga'), ('Natal','Natal'), ('Noord-Kaap','Noord-Kaap'), ('Noordwes','Noordwes'), ('Oos-Kaap','Oos-Kaap'), ('Suid-Kaap','Suid-Kaap'), ('Vrystaat','Vrystaat'), ('Wes-Kaap','Wes-Kaap'), ('Namibie','Namibie'), ('Mosambiek','Mosambiek'), ) user = models.ForeignKey(User, help_text='The user that this profile is associated with.') id_number = models.CharField(max_length=13) province = models.CharField(max_length=13, help_text='Province that the user lives in', choices=PROVINCE_CHOICES) school = models.CharField(max_length=20, help_text='Optional, user school', blank=True, null=True) gender = models.CharField(choices=GENDERS, max_length=1) dob = models.DateField() activation_code = models.CharField(max_length=6, help_text='Code used to activate public accounts.') date_activated = models.DateTimeField(default=None, blank=True, null=True, help_text='The timestamp of when the profile was activated.') premium_account = models.BooleanField(help_text='This is used to determine whether or not the user is a premium user or not.') date_created = models.DateTimeField(default=datetime.now(), help_text='The timestamp of when this profile was created.') referred_by = models.CharField(max_length=15, default=None, blank=True, null=True, help_text='The cell number of the person who referred the user to the site.') is_public = models.NullBooleanField(default=True, null=True, blank=True, help_text='Profile can be seen by anyone when checked.') objects = models.Manager() public = PublicManager() def image(self): """ Convenience method for returning the single most recent member image. """ member_images = self.memberimage_set.all() if member_images: return member_images[0] def __unicode__(self): return '%s %s' % (self.first_name, self.last_name) </code></pre> http://stackoverflow.com/questions/1879793/pass-session-data-onto-url 0 Pass session data onto URL 47 2009-12-10T09:29:11Z 2009-12-10T16:00:17Z <p>I have some information that is set in the sessions, and I was wondering if it's possible to pass this info onto the URL for the view that uses this session data. I want this to be working in such a way that if the user bookmarks the page from that view, the session data is used to pass the variables onto the view. How can I do this?</p> <p>I'm having a filter view so I want the currently selected filters displayed on the URL...sorta like www.mysite.com/filter1/filter2/filter3/ then if filter2 is cleared I'll have www.mysite.com/filter1/filter3/</p> http://stackoverflow.com/questions/1881485/python-stacktrace-help 0 Python stacktrace help sico87 2009-12-10T14:54:24Z 2009-12-10T15:57:39Z <p>hello, </p> <p>I have this stack trace error when I try view some data in my pyhton website, could some one clue me up as to what the problem is I am so lost </p> <pre><code> Environment: Request Method: GET Request URL: http://mywesbite.genericdomain.co.uk/admin/shop/passwordresetrequest/4/ Django Version: 1.1.1 Python Version: 2.5.2 Installed Applications: ['django.contrib.auth', 'django.contrib.admin', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'mywebsite.news', 'mywebsite.store_locator', 'mywebsite.css_switch', 'mywebsite.professional', 'mywebsite.contact', 'mywebsite.shop', 'tinymce', 'captcha'] Installed Middleware: ('django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware') Template error: In template /usr/lib/python2.5/site-packages/django/contrib/admin/templates/admin/change_form.html, error at line 20 Caught an exception while rendering: 'PasswordResetRequest' object has no attribute 'date' 10 : 11 : {% block coltype %}{% if ordered_objects %}colMS{% else %}colM{% endif %}{% endblock %} 12 : 13 : {% block bodyclass %}{{ opts.app_label }}-{{ opts.object_name.lower }} change-form{% endblock %} 14 : 15 : {% block breadcrumbs %}{% if not is_popup %} 16 : &lt;div class="breadcrumbs"&gt; 17 : &lt;a href="../../../"&gt;{% trans "Home" %}&lt;/a&gt; &amp;rsaquo; 18 : &lt;a href="../../"&gt;{{ app_label|capfirst|escape }}&lt;/a&gt; &amp;rsaquo; 19 : {% if has_change_permission %}&lt;a href="../"&gt;{{ opts.verbose_name_plural|capfirst }}&lt;/a&gt;{% else %}{{ opts.verbose_name_plural|capfirst }}{% endif %} &amp;rsaquo; 20 : {% if add %}{% trans "Add" %} {{ opts.verbose_name }}{% else %} {{ original|truncatewords:"18" }} {% endif %} 21 : &lt;/div&gt; 22 : {% endif %}{% endblock %} 23 : 24 : {% block content %}&lt;div id="content-main"&gt; 25 : {% block object-tools %} 26 : {% if change %}{% if not is_popup %} 27 : &lt;ul class="object-tools"&gt;&lt;li&gt;&lt;a href="history/" class="historylink"&gt;{% trans "History" %}&lt;/a&gt;&lt;/li&gt; 28 : {% if has_absolute_url %}&lt;li&gt;&lt;a href="../../../r/{{ content_type_id }}/{{ object_id }}/" class="viewsitelink"&gt;{% trans "View on site" %}&lt;/a&gt;&lt;/li&gt;{% endif%} 29 : &lt;/ul&gt; 30 : {% endif %}{% endif %} Traceback: File "/usr/lib/python2.5/site-packages/django/core/handlers/base.py" in get_response 92. response = callback(request, *callback_args, **callback_kwargs) File "/usr/lib/python2.5/site-packages/django/contrib/admin/sites.py" in root 490. return self.model_page(request, *url.split('/', 2)) File "/usr/lib/python2.5/site-packages/django/views/decorators/cache.py" in _wrapped_view_func 44. response = view_func(request, *args, **kwargs) File "/usr/lib/python2.5/site-packages/django/contrib/admin/sites.py" in model_page 509. return admin_obj(request, rest_of_url) File "/usr/lib/python2.5/site-packages/django/contrib/admin/options.py" in __call__ 1098. return self.change_view(request, unquote(url)) File "/usr/lib/python2.5/site-packages/django/db/transaction.py" in _commit_on_success 240. res = func(*args, **kw) File "/usr/lib/python2.5/site-packages/django/contrib/admin/options.py" in change_view 873. return self.render_change_form(request, context, change=True, obj=obj) File "/usr/lib/python2.5/site-packages/django/contrib/admin/options.py" in render_change_form 590. ], context, context_instance=context_instance) File "/usr/lib/python2.5/site-packages/django/shortcuts/__init__.py" in render_to_response 20. return HttpResponse(loader.render_to_string(*args, **kwargs), **httpresponse_kwargs) File "/usr/lib/python2.5/site-packages/django/template/loader.py" in render_to_string 108. return t.render(context_instance) File "/usr/lib/python2.5/site-packages/django/template/__init__.py" in render 178. return self.nodelist.render(context) File "/usr/lib/python2.5/site-packages/django/template/__init__.py" in render 779. bits.append(self.render_node(node, context)) File "/usr/lib/python2.5/site-packages/django/template/debug.py" in render_node 71. result = node.render(context) File "/usr/lib/python2.5/site-packages/django/template/loader_tags.py" in render 97. return compiled_parent.render(context) File "/usr/lib/python2.5/site-packages/django/template/__init__.py" in render 178. return self.nodelist.render(context) File "/usr/lib/python2.5/site-packages/django/template/__init__.py" in render 779. bits.append(self.render_node(node, context)) File "/usr/lib/python2.5/site-packages/django/template/debug.py" in render_node 71. result = node.render(context) File "/usr/lib/python2.5/site-packages/django/template/loader_tags.py" in render 97. return compiled_parent.render(context) File "/usr/lib/python2.5/site-packages/django/template/__init__.py" in render 178. return self.nodelist.render(context) File "/usr/lib/python2.5/site-packages/django/template/__init__.py" in render 779. bits.append(self.render_node(node, context)) File "/usr/lib/python2.5/site-packages/django/template/debug.py" in render_node 71. result = node.render(context) File "/usr/lib/python2.5/site-packages/django/template/defaulttags.py" in render 243. return self.nodelist_true.render(context) File "/usr/lib/python2.5/site-packages/django/template/__init__.py" in render 779. bits.append(self.render_node(node, context)) File "/usr/lib/python2.5/site-packages/django/template/debug.py" in render_node 71. result = node.render(context) File "/usr/lib/python2.5/site-packages/django/template/loader_tags.py" in render 24. result = self.nodelist.render(context) File "/usr/lib/python2.5/site-packages/django/template/__init__.py" in render 779. bits.append(self.render_node(node, context)) File "/usr/lib/python2.5/site-packages/django/template/debug.py" in render_node 71. result = node.render(context) File "/usr/lib/python2.5/site-packages/django/template/defaulttags.py" in render 243. return self.nodelist_true.render(context) File "/usr/lib/python2.5/site-packages/django/template/__init__.py" in render 779. bits.append(self.render_node(node, context)) File "/usr/lib/python2.5/site-packages/django/template/debug.py" in render_node 71. result = node.render(context) File "/usr/lib/python2.5/site-packages/django/template/defaulttags.py" in render 244. return self.nodelist_false.render(context) File "/usr/lib/python2.5/site-packages/django/template/__init__.py" in render 779. bits.append(self.render_node(node, context)) File "/usr/lib/python2.5/site-packages/django/template/debug.py" in render_node 81. raise wrapped Exception Type: TemplateSyntaxError at /admin/shop/passwordresetrequest/4/ Exception Value: Caught an exception while rendering: 'PasswordResetRequest' object has no attribute 'date' Original Traceback (most recent call last): File "/usr/lib/python2.5/site-packages/django/template/debug.py", line 71, in render_node result = node.render(context) File "/usr/lib/python2.5/site-packages/django/template/debug.py", line 87, in render output = force_unicode(self.filter_expression.resolve(context)) File "/usr/lib/python2.5/site-packages/django/template/__init__.py", line 572, in resolve new_obj = func(obj, *arg_vals) File "/usr/lib/python2.5/site-packages/django/template/defaultfilters.py", line 37, in _dec args[0] = force_unicode(args[0]) File "/usr/lib/python2.5/site-packages/django/utils/encoding.py", line 71, in force_unicode s = unicode(s) File "/var/www/mywesbite/src/mywebsite/../mywesbite/shop/models.py", line 1105, in __unicode__ return ", ".join((str(self.account),self.date.strftime("%b. %d, %Y, %H:%M %p"))) AttributeError: 'PasswordResetRequest' object has no attribute 'date' </code></pre> <p>My model</p> <pre><code>class Account(BaseAccount): """ The account is an extension of the Django user and serves as the profile object in user.get_profile() for shop purchases and sessions """ telephone = models.CharField(max_length=32) default_address = models.ForeignKey(Address, related_name='billing_account', blank=True, null=True) security_question = models.ForeignKey(SecurityQuestion) security_answer = models.CharField(max_length=200) how_heard = models.CharField("How did you hear about us?", max_length=100) feedback = models.TextField(blank=True) opt_in = models.BooleanField("Subscribe to mailing list", help_text="Please tick here if you would like to receive updates from %s" % Site.objects.get_current().name) temporary = models.BooleanField() def has_placed_orders(self): """ Returns True if the user has placed at least one order, False otherwise """ return self.order_set.count() &gt; 0 def get_last_order(self): """ Returns the latest order that this customer has placed. If no orders have been placed, then None is returned """ try: return self.order_set.all().order_by('-date')[0] except IndexError: return None def get_currency(self): """ Get the currency for this customer. If global currencies are enabled (settings.ENABLE_GLOBAL_CURRENCIES) then this function will return the currency related to their default address, otherwise, it returns the site default """ if settings.ENABLE_GLOBAL_CURRENCIES: return self.default_address.country.currency return Currency.get_default_currency() currency = property(get_currency) def get_gateway_currency(self): """ Get the currency that an order will be put through protx with. If protx currencies are enabled (settings.ENABLE_PROTX_CURRENCIES), then the currency will be the same returned by get_currency, otherwise, the site default is used """ if settings.ENABLE_PROTX_CURRENCIES and settings.ENABLE_GLOBAL_CURRENCIES: return self.currency return Currency.get_default_currency() gateway_currency = property(get_gateway_currency) def password_reset_presave(sender, **kwargs): """ This pre-save is responsible for generating a unique key for the request before it is saved to DB. """ instance = kwargs['instance'] if not instance.key: instance.generate_key() class PasswordResetRequest(models.Model): """ Stores a history of all of the password reset requests that have been issued across the site. It is also used to validate resets against a given URL given the key. """ account = models.ForeignKey(Account) key = models.CharField(max_length=100, unique=True) issued = models.DateTimeField(auto_now_add=True) used = models.BooleanField() def is_valid(self): """ Is this password reset request still valid? Returns true if it hasn't yet been successfully used, and was issued any time within the last seven days """ return not self.used and datetime.datetime.now() &lt; self.issued + datetime.timedelta(days=7) def __unicode__(self): """ The unicode representation of this password reset request. It is build using the unicode representation of the customers account, plus the date and time the request was made, in string form """ return ", ".join((str(self.account),self.issued.strftime("%b. %d, %Y, %H:%M %p"))) def generate_key(self): """ Generate a uuid4 key and assign it to this objects key attribute """ from uuid import uuid4 self.key = uuid4() class Meta: """ Django meta options verbose_name = "Password Reset Request" verbose_name_plural = "Password Reset Requests" """ verbose_name = "Password Reset Request" verbose_name_plural = "Password Reset Requests" pre_save.connect(password_reset_presave, sender=PasswordResetRequest) </code></pre> http://stackoverflow.com/questions/1879872/django-update-div-with-ajax 0 DJANGO : Update div with AJAX herman 2009-12-10T09:42:32Z 2009-12-10T15:48:54Z <p>Hi there</p> <p>I am building a chat application. So far I am adding chat messages with jquery $.post() and this works fine.</p> <p>No I need to retrieve the latest chat message from the table and append the list on the chat page. I am new to Django, so please go slow.</p> <p>So how do I get this back to the chatpage?</p> <p>Thank in advance!</p> http://stackoverflow.com/questions/1875091/how-to-make-a-workflow-form 2 How to make a "workflow" form Ghislain Leveque 2009-12-09T16:32:50Z 2009-12-10T15:09:56Z <p>Hi there</p> <p>For my project I need many "workflow" forms. I explain myself:</p> <p>The user selects a value in the first field, validates the form and new fields appear depending on the first field value. Then, depending on the others fields, new fields can appear...</p> <p>How can I implement that in a generic way ?</p> http://stackoverflow.com/questions/907022/is-there-a-mature-django-forum-application 1 Is there a mature Django forum application? Yuval A 2009-05-25T14:53:00Z 2009-12-10T14:29:15Z <p>I am looking for a forum solution for a Django site. I looked over the options <a href="http://code.djangoproject.com/wiki/ForumAppsComparison" rel="nofollow">in the Django wiki</a> and I check about <a href="http://stackoverflow.com/questions/901857/best-way-to-integrate-php-forum-into-django-site">integrating non-Django solutions</a>.</p> <p>As much as I do not feel comfortable with implementing an external PHP forum, I feel even less comfortable with going with a Django solution which is not mature enough.</p> <p>Do you have any recommendations on this situation? Do you have experience with mature Django-based forum solutions?</p> <p><strong>Edit:</strong> Just for closure, I decided to go with a Django solution after all since I wanted full integration with my site, and other solutions (PHP for example) could not guarantee that.</p> <p>Being as it is, I am very disappointed with the existing Django forums. They are either:</p> <ul> <li>Very basic, not more than I could do in 1 work day</li> <li>A pain to integrate into my site (templates badly designed)</li> </ul> <p>I regretfully conclude that as of now, there is no <em>mature</em> Django forum application.</p> http://stackoverflow.com/questions/1074200/serve-a-dynamically-generated-image-with-django 5 Serve a dynamically generated image with Django pufferfish 2009-07-02T12:59:55Z 2009-12-10T14:28:38Z <p>How do I serve a dynamically generated image in Django? </p> <p>I have an html tag</p> <pre><code>&lt;html&gt; ... &lt;img src="images/dynamic_chart.png" /&gt; ... &lt;/html&gt; </code></pre> <p>linked up to this request handler, which creates an in-memory image</p> <pre><code>def chart(request): img = Image.new("RGB", (300,300), "#FFFFFF") data = [(i,randint(100,200)) for i in range(0,300,10)] draw = ImageDraw.Draw(img) draw.polygon(data, fill="#000000") # now what? return HttpResponse(output) </code></pre> <p>I also plan to change the requests to AJAX, and add some sort of caching mechanism, but my understanding is that wouldn't affect this part of the solution.</p> http://stackoverflow.com/questions/345401/django-mtmfield-limitchoicesto-otherforeignkeyfieldonsamemodel 1 Django MTMField: limit_choices_to = other_ForeignKeyField_on_same_model? saturdayplace 2008-12-05T22:32:52Z 2009-12-10T14:03:46Z <p>I've got a couple django models that look like this:</p> <pre><code>from django.contrib.sites.models import Site class Photo(models.Model): title = models.CharField(max_length=100) site = models.ForeignKey(Site) file = models.ImageField(upload_to=get_site_profile_path) def __unicode__(self): return self.title class Gallery(models.Model): name = models.CharField(max_length=40) site = models.ForeignKey(Site) photos = models.ManyToManyField(Photo, limit_choices_to = {'site':name} ) def __unicode__(self): return self.name </code></pre> <p>I'm having all kinds of <em>fun</em> trying to get the <code>limit_choices_to</code> working on the Gallery model. I only want the Admin to show choices for photos that belong to the same site as this gallery. Is this possible?</p> http://stackoverflow.com/questions/1880753/does-p-have-a-special-meaning-in-django 2 Does 'p' have a special meaning in Django? Peter Mortensen 2009-12-10T12:44:16Z 2009-12-10T13:53:47Z <p>Why are p and p8 different in the following code?</p> <p>The beginning of a view function (in file views.py in a Django app named "proteinSearch" with a model named "Protein" that has a field named "description"):</p> <pre><code>def searchForProteins2(request, searchStr): p8 = Protein.objects.filter( description__icontains=searchStr) #Why doesn't this work????? p = Protein.objects.filter( description__icontains=searchStr) import pdb; pdb.set_trace() </code></pre> <p>Interactively in pdb:</p> <pre><code> (Pdb) searchStr u'centr' (Pdb) p8 [&lt;Protein: IPI00657962.1&gt;, &lt;Protein: IPI00479143.2&gt;, &lt;Protein: IPI00477050.4&gt;, &lt;Protein: IPI00220625.1&gt;, 95.2&gt;] (Pdb) p *** SyntaxError: SyntaxError('unexpected EOF while parsing', ('&lt;string&gt;', 0, 0, '')) </code></pre> http://stackoverflow.com/questions/1877940/django-1-1-comments-rendercommentform-returns-templatesyntaxerror 0 Django 1.1 - comments - 'render_comment_form' returns TemplateSyntaxError ~knny-myer 2009-12-10T00:42:23Z 2009-12-10T13:47:31Z <p>Hello,</p> <p>I want to simply render a built-in comment form in a template, using Django's builtin commenting module, but this returns a TemplateSyntaxError Exception.</p> <p>I need help debugging this error, please, because after googling and using the Django API reference, I'm still not getting any farther.</p> <p>Info:</p> <p>This is the template '_post.html'[shortened]:</p> <pre><code>&lt;div id="post_{{ object.id }}"&gt; &lt;h2&gt; &lt;a href="{% url post object.id %}"&gt;{{ object.title }}&lt;/a&gt; &lt;small&gt;{{ object.pub_date|timesince }} ago&lt;/small&gt; &lt;/h2&gt; {{ object.body }} {% load comments %} {% get_comment_count for object as comment_count %} &lt;p&gt;{{ comment_count }}&lt;/p&gt; &lt;!-- Returns 0, because no comments available --&gt; {% render_comment_form for object %} &lt;!-- Returns TemplateSyntaxError --&gt; </code></pre> <p>This is the Exception output, when rendering:</p> <pre><code>Caught an exception while rendering: Reverse for 'django.contrib.comments.views.comments.post_comment' with arguments '()' and keyword arguments '{}' not found.1 {% load comments i18n %} &lt;form action="{% comment_form_target %}" method="post"&gt; {% if next %}&lt;input type="hidden" name="next" value="{{ next }}" /&gt;{% endif %} {% for field in form %} {% if field.is_hidden %} {{ field }} {% else %} {% if field.errors %}{{ field.errors }}{% endif %} &lt;p {% if field.errors %} class="error"{% endif %} {% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}&gt; {{ field.label_tag }} {{ field }} </code></pre> <p>/posts/urls.py[shortened]:</p> <pre><code>queryset = {'queryset': Post.objects.all(), 'extra_context' : {"tags" : get_tags} } urlpatterns = patterns('django.views.generic.list_detail', url('^$', 'object_list', queryset, name='posts'), url('^blog/(?P&lt;object_id&gt;\d+)/$', 'object_detail', queryset, name='post'), ) </code></pre> <p>/urls.py[shortened]:</p> <pre><code>urlpatterns = patterns('', (r'', include('posts.urls')), (r'^comments/$', include('django.contrib.comments.urls')), ) </code></pre> http://stackoverflow.com/questions/1880619/large-functionality-change-based-on-variables 0 Large functionality change based on variables. d0ugal 2009-12-10T12:20:24Z 2009-12-10T13:41:38Z <p>I'm in a situation where I've got a project that has a large number of Django views across quite a few different apps. The same codebase and database is being used by a large number of clients. There are a few site-specific use-cases that are coming in and this requires quite a bit of custom code to be written.</p> <p>I'd like to come up with a strategy where we can have the default functionality and then replace django views based on user parameters and so on. Ideally I'd have a central codebase and a project or app per site but due to the current deployment strategy I don't see how this is possible without a massive refactor.</p> <p>I don't like this idea but it might demonstrate the problem better, basically having some way to dynamically load up another module and replace the those in views.py would do the job. Or something like a function decorator that checked for a replacement for that function and it calls that or calls the default if it can't find it. Dynamic loading could be done with something <a href="http://stackoverflow.com/questions/147507/how-does-one-do-the-equivalent-of-import-from-module-with-pythons-import/147541#147541">like this</a></p> <p>The problem I have here is the code base is really large and I need to retain the current API of course and maintain as much backwards compatibility as possible.</p> <p>Basically I'm looking for suggestions for the most pythonic and clear way to do this.</p> http://stackoverflow.com/questions/1880530/django-many-to-many-insert-ordering 0 Django Many To Many Insert Ordering Arif 2009-12-10T12:04:30Z 2009-12-10T13:27:14Z <p>Hi everyone,</p> <p>We have been struggling with this for a few days and have done lots of searches on the web.</p> <p>We are trying to figure out how entries are saved in Django forms for many to many fields.</p> <p>For example we have a news model that has a many to many relationship with images. When we add images to a news article e.g. images with id 10,2,14 we can see the post values are the following when saving a news article form:</p> <ul> <li>photos 10 </li> <li>photos 2 </li> <li>photos 14</li> </ul> <p>When we look in the many to many intersection table the order has not been preserved. We can see no logic in the order the photos are inserted.</p> <p>Hopefully that makes sense!</p> <p>Many thanks for your answers in advance.</p> <p>Arif</p> http://stackoverflow.com/questions/1880748/static-site-apache-and-dynamic-member-site-django 0 static site apache and dynamic/member site django kevindtimm 2009-12-10T12:42:58Z 2009-12-10T13:08:35Z <p>I have a site for static content, accessible to all that runs on apache. As an adjunct to that, there is a members site that runs on django. I haven't had any issue 'sharing' my .css and making both sides equivalent in appearance, but what I can't quite seem to grok is getting my django site to be django password protected (with the additional caveat that all member material, from the login forward, goes through 443).</p> <p>I can serve all the pages, I have tried to use mod_rewrite as follows:</p> <pre><code>&lt;Directory /Library/Webserver/Documents&gt; . . . &lt;/Directory&gt; WSGIScriptAlias /members /usr/local/django/mysite/apache/django.wsgi &lt;Directory /members&gt; RewriteCond %{HTTPS} off RewriteRule (.*) https://%{SERVER_HOST}%{URI} [L] . . &lt;/Directory&gt; </code></pre> <p>I have tried every one of a thousand different items in the '/members location above, nothing seems to hit (and yes, RewriteEngine On is included - I can watch the debug come out).</p> http://stackoverflow.com/questions/1875956/how-can-i-access-an-uploaded-file-in-universal-newline-mode 0 How can I access an uploaded file in universal-newline mode? Zach 2009-12-09T18:45:07Z 2009-12-10T12:26:45Z <p>I am working with a file uploaded using Django's <code>forms.FileField</code>. This returns an object of type <code>InMemoryUploadedFile</code>.</p> <p>I need to access this file in universal-newline mode. Any ideas on how to do this without saving and then reopening the file?</p> <p>Thanks</p> http://stackoverflow.com/questions/1867223/modpython-is-not-loading-stackless-python 0 mod_python is not loading stackless python Devasia Joseph 2009-12-08T14:13:33Z 2009-12-10T10:49:16Z <p>Hi, I have setup a apache2 mod_python environment with stackless python and it is working. And When I test the python environment with sys.version , it shows </p> <p>2.5.2 Stackless 3.1b3 060516 (python-2.52:76701, Dec 8 2009, 02:13:34) [GCC 4.2.4 (Ubuntu 4.2.4-1ubuntu4)] </p> <p>in the browser</p> <p>But when I do "import stackless" it shows :</p> <p>MOD_PYTHON ERROR</p> <p>ProcessId: 26177 Interpreter: '127.0.1.1'</p> <p>ServerName: '127.0.1.1' DocumentRoot: '/var/www/'</p> <p>URI: '/test.py' Location: None Directory: '/var/www/' Filename: '/var/www/test.py' PathInfo: ''</p> <p>Phase: 'PythonHandler' Handler: 'mod_python.publisher'</p> <p>Traceback (most recent call last):</p> <p>File "/usr/local/lib/python2.5/site-packages/mod_python/importer.py", line 1537, in HandlerDispatch default=default_handler, arg=req, silent=hlist.silent)</p> <p>File "/usr/local/lib/python2.5/site-packages/mod_python/importer.py", line 1229, in _process_target result = _execute_target(config, req, object, arg)</p> <p>File "/usr/local/lib/python2.5/site-packages/mod_python/importer.py", line 1128, in _execute_target result = object(arg)</p> <p>File "/usr/local/lib/python2.5/site-packages/mod_python/publisher.py", line 204, in handler module = page_cache[req]</p> <p>File "/usr/local/lib/python2.5/site-packages/mod_python/importer.py", line 1059, in <strong>getitem</strong> return import_module(req.filename)</p> <p>File "/usr/local/lib/python2.5/site-packages/mod_python/importer.py", line 296, in import_module log, import_path)</p> <p>File "/usr/local/lib/python2.5/site-packages/mod_python/importer.py", line 680, in import_module execfile(file, module.<strong>dict</strong>)</p> <p>File "/var/www/test.py", line 1, in import stackless</p> <p>ImportError: No module named stackless</p> <p>MODULE CACHE DETAILS</p> <p>Accessed: Tue Dec 8 08:53:24 2009 Generation: 0</p> <p>_mp_27cc55c5447f9e0aa13691719290c225 { FileName: '/var/www/test.py' Instance: 1 [IMPORT] Generation: 0 [ERROR] Modified: Tue Dec 8 08:52:43 2009 }</p> <p>Also I am not able to load MySQLdb , nltk etc. All these modules can be loaded in the commandline. So my guess is some how mod_python is referring the old python installation.</p> <p>What could be the issue?</p> http://stackoverflow.com/questions/1694447/how-to-set-an-event-handler-in-a-django-form-input-field 0 how to set an event handler in a django form input field Alex. S. 2009-11-07T21:17:50Z 2009-12-10T09:51:34Z <p>How to set a javascript function as handler in the event onclick in a given field of a Django Form. Is this possible?</p> <p>Any clue would be appreciated.</p> http://stackoverflow.com/questions/1879497/django-aggregation-getdisplay-function-usage 0 Django aggregation get_*_display function usage Joe J 2009-12-10T08:32:57Z 2009-12-10T09:33:30Z <p>Hi all, </p> <p>This question relates to Django Aggregation/Annotation in 1.1. Suppose I have a simple model with an IntegerField that has a "choices" parameter passed to it. In this case, it maps to a GENDERS tuple as shown. Normally, in a template (or view) I can refer to the textual value of the gender by using the get_gender_display() function. </p> <p>However, when I annotate the gender counts as I do in the view below, I can't then lookup the textual value for each gender using the get_gender_display() function. See the template excerpt below. How would I go about getting the textual value for gender back?</p> <p>I've never used Django Aggregation before, so maybe I'm missing an obvious solution. Thank you for considering my situation. </p> <h2>models.py</h2> <pre><code>GENDERS = ( ('',' '), (1,'Female'), (2,'Male'), ) class Subscriber(models.Model): gender = models.IntegerField(blank=True, null=True, choices=GENDERS) </code></pre> <h2>views.py</h2> <pre><code>from django.db.models import Count def myview(request): ... sum_gender = Subscriber.objects.values('gender').annotate(gender_sum=Count('gender')) context = { 'sum_gender':sum_gender, } return render_to_response(template_name, context,context_instance=RequestContext(request)) </code></pre> <h2>template</h2> <pre><code>... {% for genderAndsum in sum_genders %} &lt;div&gt;{{ genderAndsum.get_gender_display }} {{ genderAndsum.gender_sum }}&lt;/div&gt; {% endfor %} ... </code></pre> http://stackoverflow.com/questions/1857822/unique-model-field-in-django-and-case-sensitivity-postgres 0 Unique model field in Django and case sensitivity (postgres) chefsmart 2009-12-07T04:31:16Z 2009-12-10T09:20:18Z <p>Consider the following situation: -</p> <p>Suppose my app allows users to create the states / provinces in their country. Just for clarity, we are considering only ASCII characters here.</p> <p>In the US, a user could create the state called "Texas". If this app is being used internally, let's say the user doesn't care if it is spelled "texas" or "Texas" or "teXas"</p> <p>But importantly, the system should prevent creation of "texas" if "Texas" is already in the database.</p> <p>If the model is like the following:</p> <pre><code>class State(models.Model): name = models.CharField(max_length=50, unique=True) </code></pre> <p>The uniqueness would be case-sensitive in postgres; that is, postgres would allow the user to create both "texas" and "Texas" as they are considered unique.</p> <p>What can be done in this situation to prevent such behavior. How does one go about providing case-<strong>insenstitive</strong> uniqueness with Django and Postgres </p> <p>Right now I'm doing the following to prevent creation of case- insensitive duplicates.</p> <pre><code>class CreateStateForm(forms.ModelForm): def clean_name(self): name = self.cleaned_data['name'] try: State.objects.get(name__iexact=name) except ObjectDoesNotExist: return name raise forms.ValidationError('State already exists.') class Meta: model = State </code></pre> <p>There are a number of cases where I will have to do this check and I'm not keen on having to write similar iexact checks everywhere.</p> <p>Just wondering if there is a built-in or better way? Perhaps db_type would help? Maybe some other solution exists?</p> http://stackoverflow.com/questions/1876163/django-customising-a-legacy-database 1 Django & customising a legacy database Strawberry 2009-12-09T19:17:03Z 2009-12-10T09:13:58Z <p>I'm currently working on a project to implement a Django interface to an existing calendar application. The calendar application has MySQL as the backend DB.</p> <p>In our custom application we would like to modify/extend the data in one of the tables used by the existing calendar application e.g.</p> <pre><code># Auto-generated by inspectdb - table used by calendar application class CalendarEvent(models.Model:) name = models.CharField(max_length=80) start_time = models.DateTimeField() end_time = models.DateTimeField() # Manually created table class CustomCalendarEvent(models.Model:) code = models.CharField(max_length=80) # Mapped from name length = models.DateTimeField() # start_time - stop_time .... additional data .... </code></pre> <p>We would also like our representation of the data to remain in sync with the existing calendar table i.e. when new entries are made in the calendar application these would automatically propagate to our custom table.</p> <p>I can think of a couple of obvious ways in which to do this (e.g. a synchronisation script initiated by cron or maybe MySQL triggers) but I don't feel that these solutions are particular elegant.</p> <p>One possibility is to use a <a href="http://docs.djangoproject.com/en/dev/topics/db/managers/#id2" rel="nofollow">Custom Manager</a> for the CustomCalendarEvent and override the *get_query_set* functionality to also trigger a synchronisation function. </p> <p>Is this a legitimate use of Django CustomManagers? If not can anybody recommend an alternative approach to this problem?</p> http://stackoverflow.com/questions/1879600/about-index-and-primary-key-in-sql 4 About index and primary key in SQL? luc 2009-12-10T08:53:52Z 2009-12-10T09:09:27Z <p>It may looks a naive question but I am wondering about the relationship between primary keys and indexes in most common SQL databases.</p> <p>Is it a standard rule for a SQL database to create automatically an index for every primary key? </p> <p>I am asking that because I am designing a model with Django and I am wondering if it is redundant to set both <code>primary_key=True</code> and <code>db_index=True</code>.</p> http://stackoverflow.com/questions/1878369/in-django-form-custom-selectfield-and-selectmultiplefield 1 In Django form, custom SelectField and SelectMultipleField Natim 2009-12-10T02:54:18Z 2009-12-10T08:56:29Z <p>I am using Django everyday now for three month and it is really great. Fast web application development.</p> <p>I have still one thing that I cannot do exactly how I want to. It is the SelectField and SelectMultiple Field.</p> <p>I want to be able to put some args to an option of a Select.</p> <p>I finally success with the optgroup :</p> <pre><code>class EquipmentField(forms.ModelChoiceField): def __init__(self, queryset, **kwargs): super(forms.ModelChoiceField, self).__init__(**kwargs) self.queryset = queryset self.to_field_name=None group = None list = [] self.choices = [] for equipment in queryset: if not group: group = equipment.type if group != equipment.type: self.choices.append((group.name, list)) group = equipment.type list = [] else: list.append((equipment.id, equipment.name)) </code></pre> <p>But for another ModelForm, I have to change the background color of every option, using the color property of the model.</p> <p>Do you know how I can do that ?</p> <p>Thank you.</p> http://stackoverflow.com/questions/1879274/south-migrate-entire-database 0 south. migrate entire database Pil 2009-12-10T07:44:23Z 2009-12-10T08:02:37Z <p>how can i migrate entiry db at one step? south`s startmigration command can work only with single application</p> http://stackoverflow.com/questions/1022914/deploying-django 2 Deploying Django Robyn Smith 2009-06-21T01:00:04Z 2009-12-10T07:44:12Z <p>When finding web hosting for Rails apps, the hoster must have support for ruby on rails -- that is evident. What about hosting for Django? What support does the hoster need to provide? Python, or more than just Python?</p> <p>This might seem like an obvious question, but I'm new to web development frameworks so I must ask :)</p> http://stackoverflow.com/questions/1591101/how-do-i-dry-up-common-text-in-a-django-template 2 How do I DRY up common text in a Django template? Thierry Lam 2009-10-19T20:54:28Z 2009-12-10T05:36:01Z <p>I have some static text that needs to show up at 2 locations within a template. </p> <p>For example:</p> <pre><code>&lt;div&gt; {% if something %} This is a static text {% else %} Something else happened {% endif %} &lt;/div&gt; ... more html &lt;span&gt; {% if something %} This is a static text {% else %} Something else happend {% endif %} &lt;/span&gt; </code></pre> <ol> <li>I can do the above by duplicating the above text at 2 different locations in my template file(as shown above).</li> <li>I could also create a model which will store the text(This is DRY but cost a call to the DB for a simple task)</li> <li>I'm thinking of using <code>include template</code> but that's probably not the best way to achieve my goal.</li> </ol> <p>What's the best way to do it?</p>