{% extends "base.html" %} {% load url from future %} {% block title %}Projects{% endblock %} {% block content %}

Projects

{% load pagination_tags %} {% autopaginate projects %} {% paginate %} {% for project in projects %} {% endfor %}
Name Business Description Timesheet
{{ project.name }} {{ project.business }} {{ project.description|truncatewords:8 }} Timesheet
{% paginate %} {% endblock %}