{% extends "base.html" %} {% block title %}{{ _('Client') }} - {{ client_name }} - {{ app_name }}{% endblock %} {% block content %}
| {{ _('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') }} |