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

{{ title }}

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

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

{% for step in steps %}

{{ step.title }}

{% for step_img in step.imgs %} {{ step_img.alt }} {% endfor %}
{% for step_video in step.videos %} {% endfor %}
{{ 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 %}