{% extends "base.html" %} {% block title %}{{ _('Search') }} - {{ app_name }}{% endblock %} {% block content %}
| {{ _('Project') }} | {{ _('Start') }} | {{ _('End') }} | {{ _('Duration') }} | {{ _('Notes') }} | {{ _('Tags') }} | {{ _('Actions') }} |
|---|---|---|---|---|---|---|
| {% if entry.project %} {{ entry.project.name }} {% elif entry.client %} {{ entry.client.name }} ({{ _('Direct') }}) {% else %} {{ _('N/A') }} {% endif %} | {{ entry.start_time|user_datetime('%Y-%m-%d %H:%M') }} | {{ entry.end_time|user_datetime('%Y-%m-%d %H:%M') if entry.end_time else '-' }} | {{ entry.duration_formatted }} | {% if entry.notes %} {{ entry.notes[:80] }}{% if entry.notes|length > 80 %}...{% endif %} {% else %}-{% endif %} | {{ entry.tags or '-' }} |
{{ _('Try a different query or check your spelling.') }}