User jpwatts - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T18:16:55Zhttp://stackoverflow.com/feeds/user/21279http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/849463/django-template-includes/849530#8495303Answer by jpwatts for django template includesjpwatts2009-05-11T18:58:14Z2009-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#5244141Answer by jpwatts for How to externally populate a Django model?jpwatts2009-02-07T19:33:52Z2009-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#3897013Answer by jpwatts for How can i create a lookup in Django?jpwatts2008-12-23T18:35:56Z2008-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>>>> question.user # the `User` instance
<User: username>
>>> 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><ol>
{% for question in questions %}
<li>{{ question }} asked by: {{ question.user }}</li>
{% endfor %}
</ol>
</code></pre>
http://stackoverflow.com/questions/340888/navigation-in-django/341748#34174814Answer by jpwatts for Navigation in djangojpwatts2008-12-04T19:26:08Z2008-12-04T19:26:08Z<p>I use template inheritance to customize navigation. For example:</p>
<p>base.html</p>
<pre><code><html>
<head>...</head>
<body>
...
{% block nav %}
<ul id="nav">
<li>{% block nav-home %}<a href="{% url home %}">Home</a>{% endblock %}</li>
<li>{% block nav-about %}<a href="{% url about %}">About</a>{% endblock %}</li>
<li>{% block nav-contact %}<a href="{% url contact %}">Contact</a>{% endblock %}</li>
</ul>
{% endblock %}
...
</body>
</html>
</code></pre>
<p>about.html</p>
<pre><code>{% extends "base.html" %}
{% block nav-about %}<strong class="nav-active">About</strong>{% endblock %}
</code></pre>
http://stackoverflow.com/questions/334992/how-do-i-create-trivial-customized-field-types-in-django-models/335312#3353123Answer by jpwatts for How do I create trivial customized field types in Django models?jpwatts2008-12-02T20:27:56Z2008-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>