{% extends "base.html" %} {% block title %}{{ _('Search') }} - {{ app_name }}{% endblock %} {% block content %}

{{ _('Search Results') }}

{{ _('Results') }}
{% if entries and entries.items %}
{% for entry in entries.items %} {% endfor %}
{{ _('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 '-' }}
{% if current_user.is_admin or entry.user_id == current_user.id %}
{% endif %}
{% else %}

{{ _('No results found') }}

{{ _('Try a different query or check your spelling.') }}

{% endif %}
{% endblock %}