{% extends "base.html" %} {% load bootstrap4 %} {% load widget_tweaks %} {% block title %}Client - Project{% endblock title %} {% block content %}

{% include "client_navbar.html" %}

Project {% if project_exists%}{{project.name}}{%endif%} - {{active_company.company_name}}


{% if projects and not project_exists %}
name
description
language
action
{% for project in projects %}
{{ project.name }}
{{ project.description }}
{% if project.language == "1" %}english{%else%}deutsch{%endif%}
{% endfor %} {% else %} {%if project_exists%}
{{ project.description }}
{%else%} Currently no project for this company. {% endif %} {% endif %}
{% endblock content %}