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

FEATURED TUTORIALS

{% for tutorial in featured_tutorials %}

{{ tutorial.tutorial.title }}

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

{{ tutorial.description }}

{% empty %}

There are no featured tutorials.

{% endfor %}
{% autopaginate tutorials 10 %} {% for tutorial in tutorials %} {% include 'tutorials/list_item.html' %} {% empty %}

There are currently no tutorials.

{% endfor %}
{% paginate %}
{% endblock %}