{% extends "base.html" %} {% load news_tags %} {% block content %}
back to list
{% if tutorial.user == user %}

You created this tutorial. You have the option to edit or delete it.

edit
delete
{% endif %}

{{ tutorial.title }}

{{ tutorial.user }} at {{ tutorial.date_added|date:"g:iA, N j, Y" }}

{% if tutorial.tags %}
tags: {% for tag in tutorial|tags %} {{ tag }} {% endfor %}
{% endif %}

{{ tutorial.description|bbcode2html|safe }}

{% with tutorial as object %} {% include 'ratings/stars_holder.html' %} {% endwith %}

{{ tutorial.body|bbcode2html|safe }}

{% with tutorial as object %} {% with tutorial.user as owner %} {% include 'comments/module.html' %} {% endwith %} {% endwith %} {% endblock %}