I have some code which pulls a list of items out of the datastore.
They look about like this:
class List(db.Model):
name = db.StringProperty(multiline=True)
class Item(db.Model):
name = db.StringProperty(multiline=True)
created = db.DateTimeProperty(auto_now_add=True)
completed = db.DateTimeProperty(auto_now_add=False)
In the Django template, I would like to conditionally display a table header only if there is at least one list element to show. I'm astonished at how difficult this is.
For example:
{% for list in lists %}
<font size="+2"><b>{{ list.name }}</b></font><br>
<table><tr><th> </th><th>item</th><th>created</th><th>completed</th></tr>
{% for item in list.items %}
{% ifnotequal item.completed None %}
<tr><td> </td><td>{{ item.name }} </td><td>{{ item.created }} </td><td>{{ item.completed }} </td></tr>
{% endifnotequal %}
{% endfor %}
</table>
{%endfor%}
If I don't have any items in the list that meet the condition, I wind up with a sort of ugly empty table, like this:
**todo**
item completed delete
I would like to do something like, set a variable in Django like
{% set first = 1 %}
and then when I'm about to output at least one item for the table, do something like
{% for item in list.items %}
{% ifnotequal item.completed None %}
{% if first %}
<table><tr><th> </th><th>item</th><th>created</th><th>completed</th></tr>
{% set first = 0 %}
{% endif %}
.... do the rest of the stuff
{% endifnotequal %}
So, I went down the rabbithole of trying to create a custom tag for Django that will play nice within appengine as described here:
and ran into so many errors, even tried the advice on these pages:
another person with a similar problem
Not getting anywhere with this. I'm using Python 2.7. This shouldn't be this hard.
