User jpwatts - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T18:16:55Z http://stackoverflow.com/feeds/user/21279 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/849463/django-template-includes/849530#849530 3 Answer by jpwatts for django template includes jpwatts 2009-05-11T18:58:14Z 2009-05-11T18:58:14Z <p>If there is common code between the story templates that isn't needed site-wide, I'd create a <code>story_base</code> (extending the original <code>base</code>) and have my story templates extend that.</p> http://stackoverflow.com/questions/524214/how-to-externally-populate-a-django-model/524414#524414 1 Answer by jpwatts for How to externally populate a Django model? jpwatts 2009-02-07T19:33:52Z 2009-02-07T19:33:52Z <p>I've used cron to update my DB using both a script and a view. From cron's point of view it doesn't really matter which one you choose. As you've noted, though, it's hard to beat the simplicity of firing up a browser and hitting a URL if you ever want to update at a non-scheduled interval.</p> <p>If you go the view route, it might be worth considering a view that accepts the XML file itself via an HTTP POST. If that makes sense for your data (you don't give much information about that XML file), it would still work from cron, but could also accept an upload from a browser -- potentially letting the person who produces the XML file update the DB by themselves. That's a big win if you're not the one making the XML file, which is usually the case in my experience.</p> http://stackoverflow.com/questions/388233/how-can-i-create-a-lookup-in-django/389701#389701 3 Answer by jpwatts for How can i create a lookup in Django? jpwatts 2008-12-23T18:35:56Z 2008-12-23T18:35:56Z <p>The name of your field (<code>userid</code> instead of <code>user</code>) makes me think that you may be confused about the behavior of Django's <code>ForeignKey</code>.</p> <p>If you define a model like this:</p> <pre><code>from django.contrib.auth.models import User from django.db import models class Question(models.Model): user = models.ForeignKey(User) title = models.CharField(max_length=100) ... def __unicode__(self): return self.title </code></pre> <p>And then instantiate a <code>Question</code> as <code>question</code>:</p> <pre><code>&gt;&gt;&gt; question.user # the `User` instance &lt;User: username&gt; &gt;&gt;&gt; question.user_id # the user's primary key 1 </code></pre> <p>It looks like you may be expecting <code>question.userid</code> to be the user's primary key, rather than what it actually is: the <code>User</code> instance itself. When you access <code>question.userid</code>, a database lookup is performed, but it's done automatically by Django using the value of <code>question.userid_id</code>. I would rename the <code>userid</code> field to <code>user</code> to avoid confusion.</p> <p>With that out of the way, I think what you are trying to do is list the questions along with their associated users. If that's the case, do something like this in your template:</p> <pre><code>&lt;ol&gt; {% for question in questions %} &lt;li&gt;{{ question }} asked by: {{ question.user }}&lt;/li&gt; {% endfor %} &lt;/ol&gt; </code></pre> http://stackoverflow.com/questions/340888/navigation-in-django/341748#341748 14 Answer by jpwatts for Navigation in django jpwatts 2008-12-04T19:26:08Z 2008-12-04T19:26:08Z <p>I use template inheritance to customize navigation. For example:</p> <p>base.html</p> <pre><code>&lt;html&gt; &lt;head&gt;...&lt;/head&gt; &lt;body&gt; ... {% block nav %} &lt;ul id="nav"&gt; &lt;li&gt;{% block nav-home %}&lt;a href="{% url home %}"&gt;Home&lt;/a&gt;{% endblock %}&lt;/li&gt; &lt;li&gt;{% block nav-about %}&lt;a href="{% url about %}"&gt;About&lt;/a&gt;{% endblock %}&lt;/li&gt; &lt;li&gt;{% block nav-contact %}&lt;a href="{% url contact %}"&gt;Contact&lt;/a&gt;{% endblock %}&lt;/li&gt; &lt;/ul&gt; {% endblock %} ... &lt;/body&gt; &lt;/html&gt; </code></pre> <p>about.html</p> <pre><code>{% extends "base.html" %} {% block nav-about %}&lt;strong class="nav-active"&gt;About&lt;/strong&gt;{% endblock %} </code></pre> http://stackoverflow.com/questions/334992/how-do-i-create-trivial-customized-field-types-in-django-models/335312#335312 3 Answer by jpwatts for How do I create trivial customized field types in Django models? jpwatts 2008-12-02T20:27:56Z 2008-12-02T20:27:56Z <p>I'd do this with a subclass of Django's PositiveIntegerField:</p> <pre><code>from django.db import models class Card(object): """The ``Card`` class you described.""" ... class CardField(models.PositiveIntegerField): __metaclass__ = models.SubfieldBase def get_db_prep_value(self, value): """Return the ``int`` equivalent of ``value``.""" if value is None: return None try: int_value = value.as_number() except AttributeError: int_value = int(value) return int_value def to_python(self, value): """Return the ``Card`` equivalent of ``value``.""" if value is None or isinstance(value, Card): return value return Card(int(value)) </code></pre> <p>The <code>get_db_prep_value</code> method is responsible for converting <code>value</code> into something suitable for interacting with the database, in this case either an <code>int</code> or <code>None</code>.</p> <p>The <code>to_python</code> method does the reverse, converting <code>value</code> into a <code>Card</code>. Just like before, you'll need to handle the possibility of <code>None</code> as a value. Using the <code>SubfieldBase</code> ensures that <code>to_python</code> is called every time a value is assigned to the field.</p>