{% extends "projects/base.html" %} {% load i18n %} {% load txcommontags %} {% load pagination_tags %} {% block body_class %}{{ block.super }} project_list{% endblock %} {% block title %}{{ block.super }} | {% trans "Project list" %}{% endblock %} {% block extra_head %} {% endblock %} {% block breadcrumb %}{% homelink %} » {% trans "Projects" %}{% endblock %} {% block content_title %}
{% trans "Subscribe to this feed" %}
{{ project.description }}
{% with project.resources.all|slice:"0:4" as resources %} {% trans "Resources:" %} {% for resource in resources %} {{ resource.name }} {% if not forloop.last %},{% endif %} {% empty %} {% trans "No resources in this project." %} {% endfor %} {% endwith %} {% if project.tags %}| {% trans "Tags:" %} {% for tag in project.tagsobj.all|slice:"0:6" %}{{ tag }} {% endfor %}{% endif %}
{% trans "Bummer. No projects could be found." %}
{% if request.user.is_authenticated and perms.projects.add_project %} {% url project_create as project_create %}{% blocktrans %}Why don't you add one?{% endblocktrans %}
{% endif %} {% endif %} {% endblock %} {% block content_footer %} {% if request.user.is_authenticated and perms.projects.add_project %} {% url project_create as project_create %} {% endif %} {% endblock %}