|
|
|
@ -1,61 +1,81 @@
|
|
|
|
|
{% extends "main.html" %}
|
|
|
|
|
{%load static%}
|
|
|
|
|
{% block content %}
|
|
|
|
|
<!-- NOTES SECTION -->
|
|
|
|
|
<div class="w-full h-fit flex justify-between items-center px-10 pb-5">
|
|
|
|
|
<div class="relative w-full h-fit bg-white shadow-md rounded-md p-5">
|
|
|
|
|
<div class="w-full flex justify-between items-center">
|
|
|
|
|
|
|
|
|
|
<!-- USERS ACTIVITIES ON MOBILE -->
|
|
|
|
|
<div class="w-[55px] h-[55px] bg-slate-700 rounded-full fixed xxlg1:hidden bottom-3 right-3 p-2 flex justify-center items-center cursor-pointer usersActivityIcon z-20"
|
|
|
|
|
data-modal-url="{% url 'getupdatedactivities' %}">
|
|
|
|
|
<img src="{% static 'images/usersactivity.png' %}" alt="Users">
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- NOTES SECTION -->
|
|
|
|
|
<div class="w-full px-5 s:px-9 pb-5">
|
|
|
|
|
<div class="w-full h-fit bg-white shadow-md rounded-md p-5">
|
|
|
|
|
<div class="w-full flex flex-col s:flex-row justify-between gap-3 s:gap-0 items-center">
|
|
|
|
|
<div class="w-full s:w-fit flex justify-between items-center">
|
|
|
|
|
<div>
|
|
|
|
|
<p class="text-base text-gray-500">Recent Note:</p>
|
|
|
|
|
<p class="text-slate-700">Send an Email to Salim.</p>
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<div class="w-[13px] h-[13px] bg-red-200 rounded-full"
|
|
|
|
|
style="background-color: {{ recent_note.color }};">
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<p class="text-slate-700">{{recent_note.text}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[35px] h-[35px] rounded-full p-2 bg-gray-300 text-white text-[20px] outline-none border-none cursor-pointer flex s:hidden justify-center items-center shadow-md addNoteButton"
|
|
|
|
|
data-modal-url="{% url 'addnote' %}">
|
|
|
|
|
<i class="fa fa-plus"></i>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex justify-end items-center gap-4">
|
|
|
|
|
<div class="w-full s:w-fit hidden s:flex justify-start s:justify-end items-center gap-4">
|
|
|
|
|
<button
|
|
|
|
|
class="w-fit rounded-md py-1 px-3 bg-slate-800 border border-slate-800 text-white hover:bg-white hover:text-slate-800"
|
|
|
|
|
class="w-full s:w-fit rounded-md py-1 px-3 bg-slate-800 border border-slate-800 text-white hover:bg-white hover:text-slate-800"
|
|
|
|
|
id="showNotesButton">Show
|
|
|
|
|
Notes</button>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[35px] h-[35px] rounded-full p-2 bg-gray-300 text-white text-[20px] outline-none border-none cursor-pointer flex justify-center items-center shadow-md"
|
|
|
|
|
id="addNoteButton">
|
|
|
|
|
class="w-[35px] h-[35px] rounded-full p-2 bg-gray-300 text-white text-[20px] outline-none border-none cursor-pointer flex justify-center items-center shadow-md addNoteButton"
|
|
|
|
|
data-modal-url="{% url 'addnote' %}">
|
|
|
|
|
<i class="fa fa-plus"></i>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- ALL NOTES CONTAINER (it appears when clicking on the "Show notes" button) -->
|
|
|
|
|
<div class="w-full h-fit relative hidden justify-start gap-3 items-center mt-5 overflow-hidden overflow-x-auto"
|
|
|
|
|
id="notesContainer">
|
|
|
|
|
<div class="w-[16.33%] h-[150px] shadow-xl bg-yellow-200 p-5">
|
|
|
|
|
<p class="text-base text-slate-800">Send an Email to Salim.</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-full h-fit mt-5 hidden" id="notesContainer">
|
|
|
|
|
|
|
|
|
|
<div class="w-[16.33%] h-[150px] shadow-xl bg-pink-200 top-90 right-10 p-5">
|
|
|
|
|
<p class="text-base text-slate-80">Contact the client.</p>
|
|
|
|
|
<div class="w-full hidden lg:grid grid-cols-3 xlg:grid-cols-6 gap-3">
|
|
|
|
|
{% for note in notes %}
|
|
|
|
|
<div class="h-[150px] shadow-sm p-5" style="background-color: {{note.color}}">
|
|
|
|
|
<p class="text-base text-slate-800">{{note.text}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="w-[16.33%] h-[150px] shadow-xl bg-green-200 top-90 right-10 p-5">
|
|
|
|
|
<p class="text-base text-slate-80">Add daily report at the end of the day.</p>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="w-[16.33%] h-[150px] shadow-xl bg-blue-200 top-90 right-10 p-5">
|
|
|
|
|
<p class="text-base text-slate-80">Add daily report at the end of the day.</p>
|
|
|
|
|
<div class="w-full black lg:hidden">
|
|
|
|
|
<div class="swiper-container mt-5">
|
|
|
|
|
<div class="swiper-wrapper">
|
|
|
|
|
{% for note in notes %}
|
|
|
|
|
<div class="swiper-slide">
|
|
|
|
|
<div class="w-full h-[150px] p-3 flex justify-start items-start"
|
|
|
|
|
style="background-color: {{note.color}}">
|
|
|
|
|
{{note.text}}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="w-[16.33%] h-[150px] shadow-xl bg-purple-200 top-90 right-10 p-5">
|
|
|
|
|
<p class="text-base text-slate-80">Add daily report at the end of the day.</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="w-[16.33%] h-[150px] shadow-xl bg-yellow-200 top-90 right-10 p-5">
|
|
|
|
|
<p class="text-base text-slate-80">Add daily report at the end of the day.</p>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- TASK DETAIL AND USERS ACTIVITY SECTION -->
|
|
|
|
|
<div class="w-full flex justify-between gap-[2.5%] px-10 pb-5">
|
|
|
|
|
<!-- TASK DETAIL AND USERS ACTIVITY SECTION -->
|
|
|
|
|
<div class="w-full flex justify-between gap-5 px-5 s:px-9 pb-5">
|
|
|
|
|
<!-- LEFT SIDE / TASK DETAIL SECTION -->
|
|
|
|
|
<div class="w-[74.5%] bg-white h-fit rounded-md shadow-md p-5">
|
|
|
|
|
<div class="w-full xxlg1:w-[75%] bg-white h-fit rounded-md shadow-md p-5">
|
|
|
|
|
{% if task.status == 'Open' %}
|
|
|
|
|
<div class="w-full bg-green-700 rounded-t-md flex flex-col justify-center items-center py-3">
|
|
|
|
|
<h1 class="text-3xl text-white font-semibold">{{task.name}}</h1>
|
|
|
|
@ -71,18 +91,20 @@
|
|
|
|
|
<h1 class="text-3xl text-white font-semibold">{{task.name}}</h1>
|
|
|
|
|
</div>
|
|
|
|
|
{% endif %}
|
|
|
|
|
<div class="w-full h-[70px] flex justify-end items-center bg-gray-100 shadow-md rounded-md px-3 py-1 mt-4">
|
|
|
|
|
<div class="flex justify-end items-center gap-3">
|
|
|
|
|
<div class="w-full h-fit flex justify-end items-center bg-gray-100 shadow-md rounded-md px-3 py-3 mt-4">
|
|
|
|
|
<div class="w-full s:w-fit flex flex-col s:flex-row justify-end items-center gap-3">
|
|
|
|
|
<button
|
|
|
|
|
class="w-fit text-base px-3 py-2 bg-red-500 text-white outline-none border border-red-500 rounded-md cursor-pointer hover:bg-white hover:text-red-500">Delete
|
|
|
|
|
class="w-full s:w-fit text-base px-3 py-2 bg-red-500 text-white outline-none border border-red-500 rounded-md cursor-pointer hover:bg-white hover:text-red-500">Delete
|
|
|
|
|
Task</button>
|
|
|
|
|
<a href="{% url 'edittask' task.task_id %}">
|
|
|
|
|
<a href="{% url 'edittask' task.task_id %}" class="w-full s:w-fit">
|
|
|
|
|
<button
|
|
|
|
|
class="w-fit text-base px-3 py-2 bg-blue-500 text-white outline-none border border-blue-500 rounded-md cursor-pointer hover:bg-white hover:text-blue-500">Edit
|
|
|
|
|
class="w-full s:w-fit text-base px-3 py-2 bg-blue-500 text-white outline-none border border-blue-500 rounded-md cursor-pointer hover:bg-white hover:text-blue-500">Edit
|
|
|
|
|
Task</button>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="w-full flex flex-col gap-4 mt-5">
|
|
|
|
|
<div>
|
|
|
|
|
<p class="text-gray-500 text-xl">Project: <span
|
|
|
|
@ -106,7 +128,8 @@
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<p class="text-gray-500 text-xl">Assigned To: <span
|
|
|
|
|
class="text-slate-800 text-xl font-semibold">{{task.assigned_to.first_name}} {{task.assigned_to.last_name}}</span></p>
|
|
|
|
|
class="text-slate-800 text-xl font-semibold">{{task.assigned_to.first_name}}
|
|
|
|
|
{{task.assigned_to.last_name}}</span></p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
@ -129,201 +152,181 @@
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<p class="text-gray-500 text-xl">Related Files: <span
|
|
|
|
|
class="text-slate-800 text-xl">Documentation.pdf, Project.doc</span>
|
|
|
|
|
<p class="text-gray-500 text-xl">Related Files: <span class="text-slate-800 text-xl">Documentation.pdf,
|
|
|
|
|
Project.doc</span>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<p class="text-gray-500 text-xl">Points:</p>
|
|
|
|
|
<div class="w-full px-4">
|
|
|
|
|
|
|
|
|
|
<div class="mt-5 relative">
|
|
|
|
|
<div
|
|
|
|
|
class=" bg-slate-700 border border-slate-700 rounded-t-md flex justify-between items-center text-white text-xl font-bold h-[50px]">
|
|
|
|
|
<div class="px-3">
|
|
|
|
|
<p class="text-white uppercase font-bold">Points</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{% for point in points %}
|
|
|
|
|
<button
|
|
|
|
|
class="h-full rounded-tr-md px-4 bg-gray-300 text-slate-700 text-[18px] outline-none border-none cursor-pointer flex justify-center items-center addPointButton"
|
|
|
|
|
data-modal-url="{% url 'addpoint' task.task_id %}">
|
|
|
|
|
<i class="fa fa-plus"></i>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="overflow-x-auto border border-gray-300 rounded-b-md">
|
|
|
|
|
<table class="min-w-full divide-y">
|
|
|
|
|
<!-- TABLE HEADER -->
|
|
|
|
|
<thead class="bg-gray-50">
|
|
|
|
|
<tr>
|
|
|
|
|
<th scope="col"
|
|
|
|
|
class="px-6 py-3 text-sm font-medium text-gray-500 uppercase border-r border-gray-300 whitespace-nowrap">
|
|
|
|
|
Point
|
|
|
|
|
</th>
|
|
|
|
|
<th scope="col"
|
|
|
|
|
class="px-6 py-3 text-sm font-medium text-gray-500 uppercase whitespace-nowrap">
|
|
|
|
|
Status
|
|
|
|
|
</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
|
|
<!-- TABLE BODY -->
|
|
|
|
|
<tbody class="bg-white divide-y divide-gray-200">
|
|
|
|
|
<!-- 1st row -->
|
|
|
|
|
{% if points %}
|
|
|
|
|
{% for point in points %}
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="px-6 py-4 text-center text-sm border-r border-gray-300">
|
|
|
|
|
<p class="text-slate-800">{{point.text}}</p>
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
{% if point.status == 'Not Completed' %}
|
|
|
|
|
<div class="w-full flex justify-between items-center py-2 border-b border-gray-200">
|
|
|
|
|
<div class="w-[380px]">
|
|
|
|
|
<p class="text-slate-800">{{point.text}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex justify-end items-center gap-2">
|
|
|
|
|
<form method="post" action="{% url 'mark_point_working_on_task_page' point.id task.id %}">
|
|
|
|
|
<td class="px-6 py-4 text-center text-sm">
|
|
|
|
|
<div class="w-full flex justify-center items-center gap-2">
|
|
|
|
|
<form method="post"
|
|
|
|
|
action="{% url 'mark_point_working_on_task_page' point.id task.id %}">
|
|
|
|
|
{% csrf_token %}
|
|
|
|
|
<button type="submit"
|
|
|
|
|
class="w-[120px] px-2 py-1 bg-transparent border border-yellow-500 rounded-md text-yellow-500 hover:bg-yellow-500 hover:text-white">Working
|
|
|
|
|
class="w-[120px] px-2 py-2 bg-transparent border border-yellow-500 rounded-md text-yellow-500 hover:bg-yellow-500 hover:text-white">Working
|
|
|
|
|
On</button>
|
|
|
|
|
</form>
|
|
|
|
|
<form method="post" action="{% url 'mark_point_completed_task_page' point.id task.id %}">
|
|
|
|
|
<form method="post"
|
|
|
|
|
action="{% url 'mark_point_completed_task_page' point.id task.id %}">
|
|
|
|
|
{% csrf_token %}
|
|
|
|
|
<button type="submit"
|
|
|
|
|
class="w-[120px] px-2 py-1 bg-transparent border border-blue-500 rounded-md text-blue-500 hover:bg-blue-500 hover:text-white">Complete</button>
|
|
|
|
|
class="w-[120px] px-2 py-2 bg-transparent border border-blue-500 rounded-md text-blue-500 hover:bg-blue-500 hover:text-white">Complete</button>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
{% if point.status == 'Completed' %}
|
|
|
|
|
<div class="w-full flex justify-between items-center py-2 border-b border-gray-200">
|
|
|
|
|
<div class="w-[380px]">
|
|
|
|
|
<p class="text-slate-800 line-through">{{point.text}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-[150px]">
|
|
|
|
|
<button class="w-full px-2 py-1 bg-blue-500 border border-blue-500 rounded-md text-white opacity-40"
|
|
|
|
|
<td class="px-6 py-4 text-center text-sm">
|
|
|
|
|
<button
|
|
|
|
|
class="w-fit px-3 py-2 bg-blue-500 border border-blue-500 rounded-md text-white opacity-40"
|
|
|
|
|
value="Completed" disabled>Completed</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% if point.status == 'Working On' %}
|
|
|
|
|
<div class="w-full flex justify-between items-center py-2 border-b border-gray-200">
|
|
|
|
|
<div class="w-[380px]">
|
|
|
|
|
<p class="text-slate-800">{{point.text}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex justify-end items-center gap-2">
|
|
|
|
|
<td class="px-6 py-4 text-center text-sm">
|
|
|
|
|
<div class="w-full flex justify-center items-center gap-2">
|
|
|
|
|
<button
|
|
|
|
|
class="w-[120px] px-2 py-1 border border-yellow-500 rounded-md bg-yellow-500 text-white opacity-40"
|
|
|
|
|
class="w-[120px] px-2 py-2 border border-yellow-500 rounded-md bg-yellow-500 text-white opacity-40"
|
|
|
|
|
disabled>Working On</button>
|
|
|
|
|
<form method="post" action="{% url 'mark_point_completed_task_page' point.id task.id %}">
|
|
|
|
|
<form method="post"
|
|
|
|
|
action="{% url 'mark_point_completed_task_page' point.id task.id %}">
|
|
|
|
|
{% csrf_token %}
|
|
|
|
|
<button type="submit"
|
|
|
|
|
class="w-[120px] px-2 py-1 bg-transparent border border-blue-500 rounded-md text-blue-500 hover:bg-blue-500 hover:text-white">Complete</button>
|
|
|
|
|
class="w-[120px] px-2 py-2 bg-transparent border border-blue-500 rounded-md text-blue-500 hover:bg-blue-500 hover:text-white">Complete</button>
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="w-full px-4">
|
|
|
|
|
<button class="w-full text-gray-500 py-3 bg-gray-100 addPointButton" data-modal-url="{% url 'addpoint' task.task_id %}">ADD POINT</button>
|
|
|
|
|
</button>
|
|
|
|
|
{% else %}
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="3" class="px-6 py-4 text-center text-sm text-slate-800">
|
|
|
|
|
No Available Points
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
{% endif %}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<p class="text-gray-500 text-xl">Timeline:</p>
|
|
|
|
|
<div class="w-full px-4">
|
|
|
|
|
<div class="w-full border-t border-x border-gray-300 rounded-t-md mt-3">
|
|
|
|
|
<!-- HEADER -->
|
|
|
|
|
<div class="w-full h-[60px] flex items-center justify-between">
|
|
|
|
|
<div class="mt-5 relative">
|
|
|
|
|
<div
|
|
|
|
|
class="w-[30%] h-full border-r border-gray-300 flex justify-center items-center">
|
|
|
|
|
<p class="text-sm">Task Time: <span class="text-sm text-gray-500">560
|
|
|
|
|
minutes</span></p>
|
|
|
|
|
</div>
|
|
|
|
|
<div
|
|
|
|
|
class="w-[25%] h-full border-r border-gray-300 flex justify-center items-center">
|
|
|
|
|
<p class="text-sm">User</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div
|
|
|
|
|
class="w-[25%] h-full border-r border-gray-300 flex justify-center items-center">
|
|
|
|
|
<p class="text-sm">Date</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-[20%] h-full flex justify-center items-center">
|
|
|
|
|
<p class="text-sm">Total Time</p>
|
|
|
|
|
</div>
|
|
|
|
|
class=" bg-slate-700 border border-slate-700 rounded-t-md flex justify-between items-center text-white text-xl font-bold h-[50px]">
|
|
|
|
|
<div class="px-3">
|
|
|
|
|
<p class="text-white uppercase font-bold">Timline</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- BODY -->
|
|
|
|
|
<div class="w-full border-t border-gray-300">
|
|
|
|
|
<!-- 1ST ROW -->
|
|
|
|
|
<div
|
|
|
|
|
class="w-full h-[50px] flex justify-between items-center border-b border-gray-300">
|
|
|
|
|
<div
|
|
|
|
|
class="w-[30%] h-full border-r border-gray-300 flex justify-center items-center">
|
|
|
|
|
<button
|
|
|
|
|
class="w-fit py-1 px-3 bg-red-500 border border-red-500 text-white text-base rounded-md">Delete</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div
|
|
|
|
|
class="w-[25%] h-full border-r border-gray-300 flex justify-center items-center">
|
|
|
|
|
<p class="text-sm">Nataly</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div
|
|
|
|
|
class="w-[25%] h-full border-r border-gray-300 flex justify-center items-center">
|
|
|
|
|
<p class="text-sm">6-9-2023</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-[20%] h-full flex justify-center items-center">
|
|
|
|
|
<p class="text-sm">360 minutes</p>
|
|
|
|
|
</div>
|
|
|
|
|
class="h-full rounded-tr-md px-4 bg-gray-300 text-slate-700 text-[18px] outline-none border-none cursor-pointer flex justify-center items-center addTimeButton"
|
|
|
|
|
data-modal-url="{% url 'addtime' %}">
|
|
|
|
|
<i class="fa fa-plus"></i>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- 2ND ROW -->
|
|
|
|
|
<div
|
|
|
|
|
class="w-full h-[50px] flex justify-between items-center border-b border-gray-300">
|
|
|
|
|
<div
|
|
|
|
|
class="w-[30%] h-full border-r border-gray-300 flex justify-center items-center">
|
|
|
|
|
<div class="overflow-x-auto border border-gray-300 rounded-b-md">
|
|
|
|
|
<table class="min-w-full divide-y">
|
|
|
|
|
<!-- TABLE HEADER -->
|
|
|
|
|
<thead class="bg-gray-50">
|
|
|
|
|
<tr>
|
|
|
|
|
<th scope="col"
|
|
|
|
|
class="px-6 py-3 text-sm font-medium text-gray-500 uppercase border-r border-gray-300 whitespace-nowrap">
|
|
|
|
|
Task Time: 300 min
|
|
|
|
|
</th>
|
|
|
|
|
<th scope="col"
|
|
|
|
|
class="px-6 py-3 text-sm font-medium text-gray-500 uppercase border-r border-gray-300 whitespace-nowrap">
|
|
|
|
|
User
|
|
|
|
|
</th>
|
|
|
|
|
<th scope="col"
|
|
|
|
|
class="px-6 py-3 text-sm font-medium text-gray-500 uppercase whitespace-nowrap">
|
|
|
|
|
Date
|
|
|
|
|
</th>
|
|
|
|
|
<th scope="col"
|
|
|
|
|
class="px-6 py-3 text-sm font-medium text-gray-500 uppercase whitespace-nowrap">
|
|
|
|
|
Total Time
|
|
|
|
|
</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
|
|
<!-- TABLE BODY -->
|
|
|
|
|
<tbody class="bg-white divide-y divide-gray-200">
|
|
|
|
|
<!-- 1st row -->
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="px-6 py-4 text-center text-sm border-r border-gray-300">
|
|
|
|
|
<button
|
|
|
|
|
class="w-fit py-1 px-3 bg-red-500 border border-red-500 text-white text-base rounded-md">Delete</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div
|
|
|
|
|
class="w-[25%] h-full border-r border-gray-300 flex justify-center items-center">
|
|
|
|
|
<p class="text-sm">Salim</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div
|
|
|
|
|
class="w-[25%] h-full border-r border-gray-300 flex justify-center items-center">
|
|
|
|
|
<p class="text-sm">12-9-2023</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-[20%] h-full flex justify-center items-center">
|
|
|
|
|
<p class="text-sm">200 minutes</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
<!-- 3RD ROWS -->
|
|
|
|
|
<div
|
|
|
|
|
class="w-full h-[50px] flex justify-between items-center border-b border-gray-300">
|
|
|
|
|
<div
|
|
|
|
|
class="w-[30%] h-full border-r border-gray-300 flex justify-center items-center">
|
|
|
|
|
<button
|
|
|
|
|
class="w-fit py-1 px-3 bg-red-500 border border-red-500 text-white text-base rounded-md">Delete</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div
|
|
|
|
|
class="w-[25%] h-full border-r border-gray-300 flex justify-center items-center">
|
|
|
|
|
<p class="text-sm">Salim</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div
|
|
|
|
|
class="w-[25%] h-full border-r border-gray-300 flex justify-center items-center">
|
|
|
|
|
<p class="text-sm">12-9-2023</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-[20%] h-full flex justify-center items-center">
|
|
|
|
|
<p class="text-sm">200 minutes</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<td class="px-6 py-4 text-center text-sm border-r border-gray-300">
|
|
|
|
|
<a class="text-slate-800">Nataly</a>
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
<!-- 4TH ROW -->
|
|
|
|
|
<div
|
|
|
|
|
class="w-full h-[50px] flex justify-between items-center border-b border-gray-300">
|
|
|
|
|
<div
|
|
|
|
|
class="w-[30%] h-full border-r border-gray-300 flex justify-center items-center">
|
|
|
|
|
<button
|
|
|
|
|
class="w-fit py-1 px-3 bg-red-500 border border-red-500 text-white text-base rounded-md">Delete</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div
|
|
|
|
|
class="w-[25%] h-full border-r border-gray-300 flex justify-center items-center">
|
|
|
|
|
<p class="text-sm">Reine</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div
|
|
|
|
|
class="w-[25%] h-full border-r border-gray-300 flex justify-center items-center">
|
|
|
|
|
<p class="text-sm">12-9-2023</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-[20%] h-full flex justify-center items-center">
|
|
|
|
|
<p class="text-sm">200 minutes</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-full">
|
|
|
|
|
<button class="w-full border-b border-gray-300 text-gray-500 py-3 bg-gray-100 addTimeButton" data-modal-url="{% url 'addtime' %}">ADD TIMELINE</button>
|
|
|
|
|
</div>
|
|
|
|
|
<td class="px-6 py-4 text-center text-sm border-r border-gray-300">
|
|
|
|
|
<a class="text-slate-800">6-9-2023</a>
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
<td class="px-6 py-4 text-center text-sm">
|
|
|
|
|
<a class="text-slate-800">50min</a>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<!-- <tr>
|
|
|
|
|
<td colspan="3" class="px-6 py-4 text-center text-sm text-slate-800">
|
|
|
|
|
No Available Credentials
|
|
|
|
|
</td>
|
|
|
|
|
</tr> -->
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<div class="mt-5">
|
|
|
|
|
<p class="text-gray-500 text-xl">Description:</p>
|
|
|
|
|
<div class="w-full h-fit px-4 mt-1">
|
|
|
|
|
<p class="text-slate-700">
|
|
|
|
@ -334,7 +337,7 @@
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<p class="text-gray-500 text-xl">Tags:</p>
|
|
|
|
|
<div class="w-full h-fit px-4 mt-1 flex flex-wrap justify-start items-center gap-3">
|
|
|
|
|
<div class="w-full h-fit px-4 mt-2 flex flex-wrap justify-start items-center gap-3">
|
|
|
|
|
<button
|
|
|
|
|
class="text-sm text-gray-400 border border-gray-400 rounded-md w-fit py-2 px-3 outline-none cursor-pointer">Media
|
|
|
|
|
Streaming</button>
|
|
|
|
@ -351,8 +354,10 @@
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- RIGHT SIDE / USERS ACTIVITY -->
|
|
|
|
|
<div class="w-[23%] bg-white h-fit rounded-md shadow-md p-5">
|
|
|
|
|
<div class="hidden xxlg1:block w-[25%] bg-white h-[800px] overflow-y-auto overflow-hidden rounded-md shadow-md p-5">
|
|
|
|
|
<h1 class="text-2xl text-slate-700 text-center font-semibold">USERS ACTIVITY</h1>
|
|
|
|
|
<div class="w-full h-fit mt-2" id="activitiesContainer">
|
|
|
|
|
|
|
|
|
@ -360,11 +365,11 @@
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- POPUP MODAL -->
|
|
|
|
|
<div class="w-full h-full bg-black bg-opacity-40 z-20 fixed justify-center items-center hidden" id="popUpModal">
|
|
|
|
|
<!-- POPUP MODAL -->
|
|
|
|
|
<div class="w-full h-full bg-black bg-opacity-40 z-20 fixed justify-center items-center hidden" id="popUpModal">
|
|
|
|
|
<div class="w-[95%] md:w-fit h-fit bg-white rounded-md p-9 relative">
|
|
|
|
|
<button class="absolute top-3 right-5 text-slate-800 text-xl cursor-pointer outline-none border-none"
|
|
|
|
|
id="closeModalButton">
|
|
|
|
@ -372,14 +377,14 @@
|
|
|
|
|
</button>
|
|
|
|
|
<iframe id="popupModalFrame" frameborder="0"></iframe>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<script type="text/javascript" src='{% static "js/pop-modals.js" %}'></script>
|
|
|
|
|
</div>
|
|
|
|
|
<script type="text/javascript" src='{% static "js/pop-modals.js" %}'></script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!---------------------- JS SCRIPTS -------------------->
|
|
|
|
|
<!---------------------- JS SCRIPTS -------------------->
|
|
|
|
|
|
|
|
|
|
<!-- TO SHOW ALL THE ADDED NOTES BY THE USER WHEN CLICKING ON THE SHOW NOTES BUTTON -->
|
|
|
|
|
<script type="text/javascript" src='{% static "js/show-notes.js" %}'></script>
|
|
|
|
|
<!-- TO SHOW ALL THE ADDED NOTES BY THE USER WHEN CLICKING ON THE SHOW NOTES BUTTON -->
|
|
|
|
|
<script type="text/javascript" src='{% static "js/show-notes.js" %}'></script>
|
|
|
|
|
{% endblock content %}
|