{% extends "base.html" %} {% load custom_filters %} {% load static %} {% block title %} Time Log {% endblock title %} {% block description %} Manage your time logs efficiently. Start new time logs, view active logs, and review existing time logs to keep track of your progress. {% endblock description %} {% block keywords %} Time Log, Start Time Log, Active Time Log, Existing Time Logs, Track Time, Time Management {% endblock keywords %} {% block og_title %} Time Log - Efficient Time Management {% endblock og_title %} {% block og_description %} Start new time logs, manage active logs, and review existing ones to effectively track and manage your work time. {% endblock og_description %} {% block content %}
{% include "includes/sidenav.html" %}
{% if not active_time_log %}
{% csrf_token %}

Enter a valid GitHub issue URL (e.g., https://github.com/user/repo/issues/1)

{% endif %} {% if active_time_log %}

Active Time Log

{% endif %}

Existing Time Logs

{% for log in time_logs %} {% if log.end_time %} {% endif %} {% empty %} {% endfor %}
List of all time logs with their details
Start Time End Time Duration GitHub Issue Organization
{{ log.start_time|date:"DATETIME_FORMAT" }} {{ log.end_time|date:"DATETIME_FORMAT" }} {{ log.duration|before_dot }} {{ log.github_issue_url | slice:"19:" | truncatechars:30 }} {% if log.organization %} {{ log.organization }} {% else %} - {% endif %}
No time logs available
{% endblock content %}