{% extends "base.html" %} {% block title %}{{ _('Client') }} - {{ client_name }} - {{ app_name }}{% endblock %} {% block content %}
{{ _('Projects') }} ({{ projects|length }})
{% if projects %}
{% for project in projects %} {% endfor %}
{{ _('Project') }} {{ _('Status') }} {{ _('Total Hours') }} {{ _('Billable Hours') }} {{ _('Actions') }}
{{ project.name }} {% if project.description %}
{{ project.description[:100] }}{% if project.description|length > 100 %}...{% endif %} {% endif %}
{% if project.status == 'active' %} {{ _('Active') }} {% else %} {{ _('Archived') }} {% endif %} {{ "%.1f"|format(project.total_hours) }}h {% if project.billable %} {{ "%.1f"|format(project.total_billable_hours) }}h {% else %} - {% endif %} {{ _('View') }}
{% else %}

{{ _('No Projects for this Client') }}

{% endif %}
{% endblock %}