Hi, thank you it was helpful.

I have a follow up question, lets say I wanted to do a check to see if 
category is == to a string, how can I do that?

I have tried using the if tag but it doesn't work.

On Wednesday, November 25, 2015 at 6:09:42 PM UTC-5, Nkansah Rexford wrote:
>
> Perhaps the blog_post_list.html file might be of help. In mine, I find 
> this:
> {% with blog_post.categories.all as categories %}
>   {% if categories %}
>     ...
>     {% for category in categories %}
>     <a href="{% url "blog_post_list_category" category.slug %}">{{ 
> category }}</a>{% if not forloop.last %}, {% endif %}
>     {% endfor %}
>   {% endif %}
> {% endwith %}
>
> That hopefully gives an idea how to fetch a category.
>
> And remember, you wouldn't expect to find a category object or objects if 
> one isn't already created.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to