{% extends "base.html" %} {% block content %}

{{ title }}

by {{ author }} in {{ category }} > {{ channel }}

{{ views }} Views, {{ favorites }} Favorites, {{ comment_count }} Comments

{% for step in steps %}

{{ step.title }}

{% if step.imgs %}
{% for step_img in step.imgs %}
{{ step_img.alt }}
{% endfor %}
{% endif %} {% if step.videos %}
{% for step_video in step.videos %}
{% endfor %}
{% endif %} {% if step.iframes %}
{% for step_iframe in step.iframes %}
{% endfor %}
{% endif %} {% if step.downloads %}

Downloads

{% for step_download in step.downloads %} {% endfor %}
{% endif %}
{{ step.text|safe }}
{% endfor %}

{% for index, comment in enumerate(comments) %} {{ comment[2] }} {{ comment[3] }} {{ comment[5] }} {{ comment[0] }} votes {{ comment[6]|safe }}
{% for reply in comment[8] %}
{{ comment[2] }} {{ reply[3] }} {{ reply[5] }} {{ reply[0] }} votes {{ reply[6]|safe }}
{% endfor %}

{% endfor %} {% endblock %}