63
You can use the {% with %}
templatetag for this sort of thing.
{% with v.docs|first as first_doc %}{{ first_doc.id }}{% endwith %}
77
You can try this:
{{ v.docs.0 }}
Like arr.0
You can get elements by index (0
, 1
, 2
, etc.).
- [Django]-How to customize the auth.User Admin page in Django CRUD?
- [Django]-Django admin listview Customize Column Name
- [Django]-Django custom field validator vs. clean
8
I don’t know if this is helpful..
What you want is the first value of an iterable (v.docs) and you are iterating over another encapsulating iterable (lists).
For the count, I would do the same, but for the first element..
I’d iterate over the v.docs individually and retrieve the first value via
an inner loop.
{% for doc in v.docs %}
{% if v.docs | first %}
<li>doc</li>
{% endif %}
{% endfor %}
Note: the first filter is applied to v.docs , not doc.
Yeah. It involves another loop
- [Django]-For Django models, is there a shortcut for seeing if a record exists?
- [Django]-How does one make logging color in Django/Google App Engine?
- [Django]-Django ManyToMany model validation
Source:stackexchange.com