{% extends "projects/base.html" %} {% load project_tags %} {% load base_tags %} {% load base_filters %} {% block content %}

{{ project.project_name }}

{% if project.end_dt %}

{% trans "Year Completed:" %}

{{ project.end_dt }}

{% endif %} {% if project.client %}

{% trans "Client:" %}

{{ project.client|safe}}

{% endif %} {% if project.project_description %}

{% trans "Project Description:" %}

{{ project.project_description|safe }} {% endif %} {% if project_photos %}

{% trans "Pictures" %}

{% for picture in project_photos %}
{% endfor %}
{% endif %} {% if project.video_title %}

{{ project.video_title }}

{% endif %} {% if project.video_description %} {{ project.video_description|safe }} {% endif %} {% if project.video_embed_code %} {{ project.video_embed_code|safe }} {% endif %} {% include "projects/meta.html" %}
{% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}