38 lines
876 B
HTML
38 lines
876 B
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
|
|
<h1>Timesheet</h1>
|
|
<h2>Bugs</h2>
|
|
<ul>
|
|
<li><s>Can add time entry where end date is before start date</s></li>
|
|
</ul>
|
|
<h2>To-do</h2>
|
|
<ul>
|
|
<li>Multi-line time adds</li>
|
|
<li>Time adding from files(Toggl)</li>
|
|
<li>Associate Time with Project</li>
|
|
<li>Task types</li>
|
|
<li>Add Security Module</li>
|
|
<li>In-line editing</li>
|
|
<li>Breadcrumb</li>
|
|
<li>Secure execution via API</li>
|
|
<li>Test Cases</li>
|
|
<ul>
|
|
<li>Blank entries</li>
|
|
<ul>
|
|
<s><li>Users</li></s>
|
|
<li>Time entries</li>
|
|
</ul>
|
|
<li>Adding time in the future should not be allowed</li>
|
|
</ul>
|
|
<li>In-Page notifications for actions</li>
|
|
<ul>
|
|
<li>Adding Users</li>
|
|
<li>Deleting Users</li>
|
|
<li>Adding Time</li>
|
|
<li>Deleting Time</li>
|
|
<li>Prompt to verify desire to delete a record</li>
|
|
</ul>
|
|
</ul>
|
|
|
|
{% endblock %} |