|
|
|
@ -7,7 +7,7 @@
|
|
|
|
|
<div class="w-full flex justify-between items-center">
|
|
|
|
|
<div>
|
|
|
|
|
<p class="text-base text-gray-500">Recent Note:</p>
|
|
|
|
|
<p class="text-slate-700">--</p>
|
|
|
|
|
<p class="text-slate-700">{{recent_note.text}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex justify-end items-center gap-4">
|
|
|
|
|
<button
|
|
|
|
@ -68,115 +68,31 @@
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- TASKS TABLE -->
|
|
|
|
|
{% for task in tasks %}
|
|
|
|
|
<div class="w-full h-fit bg-white p-3 rounded-md shadow-md mt-5">
|
|
|
|
|
<div class="w-full bg-white h-fit rounded-md border border-gray-300">
|
|
|
|
|
<!-- TABLE HEADER -->
|
|
|
|
|
<div class="w-full flex h-[70px] rounded-t-md">
|
|
|
|
|
{% if task.status == 'Open' %}
|
|
|
|
|
<div
|
|
|
|
|
class="w-[55%] flex justify-center items-center border-r border-b border-gray-300 bg-green-700 rounded-tl-md">
|
|
|
|
|
<p class="text-xl text-white">Task Name</p>
|
|
|
|
|
<p class="text-xl text-white">{{task.name}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-[15%] flex justify-center items-center border-r border-b border-gray-300">
|
|
|
|
|
<p class="text-xl text-slate-700">Open</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-[15%] flex justify-center items-center border-r border-b border-gray-300">
|
|
|
|
|
<p class="text-xl text-slate-700">1/2/2021</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-[15%] flex justify-center items-center border-b border-gray-300">
|
|
|
|
|
<p class="text-xl text-slate-700">1/2/2022</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- TABLE BODY -->
|
|
|
|
|
<div class="w-full h-fit flex">
|
|
|
|
|
<!-- LEFT SIDE OF TABLE BODY -->
|
|
|
|
|
<div class="w-[55%] h-fit bg-white p-3 rounded-bl-md">
|
|
|
|
|
<!-- 1st row -->
|
|
|
|
|
<div class="w-full flex flex-col gap-2">
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Project:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">Osina Project</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Epic:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">epic</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Assigned To:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">Nataly</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Files:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">Documentation.pdf, Project.doc</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Tags:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">Live Streaming, Media Streaming</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Extra:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">Yes</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- RIGHT SIDE OF TABLE BODY -->
|
|
|
|
|
<div class="w-[45%] h-fit bg-white flex flex-wrap justify-start rounded-br-md">
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Close</button>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
|
id="updateStatusButton" data-modal-url="{% url 'updatestatus' %}">Update
|
|
|
|
|
Status</button>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
|
id="addTimeButton" data-modal-url="{% url 'addtime' %}">Add
|
|
|
|
|
Time</button>
|
|
|
|
|
<button class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-red-500 text-white"
|
|
|
|
|
id="deleteTaskButton" data-modal-url="{% url 'deletetask' %}">Delete</button>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-blue-500 text-white">Update</button>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
|
id="showPointsButton" data-modal-url="{% url 'showpoints' %}">Show
|
|
|
|
|
Points</button>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
|
id="addPointButton" data-modal-url="{% url 'addpoint' %}">Add
|
|
|
|
|
Point</button>
|
|
|
|
|
<a href="./task-details.html" class="w-[33.33%]">
|
|
|
|
|
<button
|
|
|
|
|
class="w-full p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Details</button>
|
|
|
|
|
</a>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500 rounded-br-md"
|
|
|
|
|
id="timelineButton" data-modal-url="{% url 'timeline' %}">Timeline</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- TASKS TABLE -->
|
|
|
|
|
<div class="w-full h-fit bg-white p-3 rounded-md shadow-md mt-5">
|
|
|
|
|
<div class="w-full bg-white h-fit rounded-md border border-gray-300">
|
|
|
|
|
<!-- TABLE HEADER -->
|
|
|
|
|
<div class="w-full flex h-[70px] rounded-t-md">
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% if task.status == 'Working On' %}
|
|
|
|
|
<div
|
|
|
|
|
class="w-[55%] flex justify-center items-center border-r border-b border-gray-300 bg-green-700 rounded-tl-md">
|
|
|
|
|
<p class="text-xl text-white">Task Name</p>
|
|
|
|
|
class="w-[55%] flex justify-center items-center border-r border-b border-gray-300 bg-yellow-400 rounded-tl-md">
|
|
|
|
|
<p class="text-xl text-white">{{task.name}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
{% endif %}
|
|
|
|
|
<div class="w-[15%] flex justify-center items-center border-r border-b border-gray-300">
|
|
|
|
|
<p class="text-xl text-slate-700">Open</p>
|
|
|
|
|
<p class="text-xl text-slate-700">{{task.status}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-[15%] flex justify-center items-center border-r border-b border-gray-300">
|
|
|
|
|
<p class="text-xl text-slate-700">1/2/2021</p>
|
|
|
|
|
<p class="text-xl text-slate-700">{{task.formatted_start_date}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-[15%] flex justify-center items-center border-b border-gray-300">
|
|
|
|
|
<p class="text-xl text-slate-700">1/2/2022</p>
|
|
|
|
|
<p class="text-xl text-slate-700">{{task.formatted_end_date}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
@ -188,17 +104,17 @@
|
|
|
|
|
<div class="w-full flex flex-col gap-2">
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Project:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">Osina Project</p>
|
|
|
|
|
<p class="text-slate-700 text-base">{{task.project.name}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Epic:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">epic</p>
|
|
|
|
|
<p class="text-slate-700 text-base">{{task.epic.title}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Assigned To:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">Nataly</p>
|
|
|
|
|
<p class="text-slate-700 text-base">{{task.assigned_to.first_name}} {{task.assigned_to.last_name}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
@ -212,7 +128,7 @@
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Extra:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">Yes</p>
|
|
|
|
|
<p class="text-slate-700 text-base">{{task.extra}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -241,7 +157,7 @@
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
|
id="addPointButton" data-modal-url="{% url 'addpoint' %}">Add
|
|
|
|
|
Point</button>
|
|
|
|
|
<a href="./task-details.html" class="w-[33.33%]">
|
|
|
|
|
<a href="{% url 'detailed-task' task.task_id %}" class="w-[33.33%]">
|
|
|
|
|
<button
|
|
|
|
|
class="w-full p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Details</button>
|
|
|
|
|
</a>
|
|
|
|
@ -252,192 +168,8 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
<!-- TASKS TABLE -->
|
|
|
|
|
<div class="w-full h-fit bg-white p-3 rounded-md shadow-md mt-5">
|
|
|
|
|
<div class="w-full bg-white h-fit rounded-md border border-gray-300">
|
|
|
|
|
<!-- TABLE HEADER -->
|
|
|
|
|
<div class="w-full flex h-[70px] rounded-t-md">
|
|
|
|
|
<div
|
|
|
|
|
class="w-[55%] flex justify-center items-center border-r border-b border-gray-300 bg-green-700 rounded-tl-md">
|
|
|
|
|
<p class="text-xl text-white">Task Name</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-[15%] flex justify-center items-center border-r border-b border-gray-300">
|
|
|
|
|
<p class="text-xl text-slate-700">Open</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-[15%] flex justify-center items-center border-r border-b border-gray-300">
|
|
|
|
|
<p class="text-xl text-slate-700">1/2/2021</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-[15%] flex justify-center items-center border-b border-gray-300">
|
|
|
|
|
<p class="text-xl text-slate-700">1/2/2022</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- TABLE BODY -->
|
|
|
|
|
<div class="w-full h-fit flex">
|
|
|
|
|
<!-- LEFT SIDE OF TABLE BODY -->
|
|
|
|
|
<div class="w-[55%] h-fit bg-white p-3 rounded-bl-md">
|
|
|
|
|
<!-- 1st row -->
|
|
|
|
|
<div class="w-full flex flex-col gap-2">
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Project:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">Osina Project</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Epic:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">epic</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Assigned To:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">Nataly</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Files:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">Documentation.pdf, Project.doc</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Tags:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">Live Streaming, Media Streaming</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Extra:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">Yes</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- RIGHT SIDE OF TABLE BODY -->
|
|
|
|
|
<div class="w-[45%] h-fit bg-white flex flex-wrap justify-start rounded-br-md">
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Close</button>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
|
id="updateStatusButton" data-modal-url="{% url 'updatestatus' %}">Update
|
|
|
|
|
Status</button>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
|
id="addTimeButton" data-modal-url="{% url 'addtime' %}">Add
|
|
|
|
|
Time</button>
|
|
|
|
|
<button class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-red-500 text-white"
|
|
|
|
|
id="deleteTaskButton" data-modal-url="{% url 'deletetask' %}">Delete</button>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-blue-500 text-white">Update</button>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
|
id="showPointsButton" data-modal-url="{% url 'showpoints' %}">Show
|
|
|
|
|
Points</button>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
|
id="addPointButton" data-modal-url="{% url 'addpoint' %}">Add
|
|
|
|
|
Point</button>
|
|
|
|
|
<a href="./task-details.html" class="w-[33.33%]">
|
|
|
|
|
<button
|
|
|
|
|
class="w-full p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Details</button>
|
|
|
|
|
</a>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500 rounded-br-md"
|
|
|
|
|
id="timelineButton" data-modal-url="{% url 'timeline' %}">Timeline</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- TASKS TABLE -->
|
|
|
|
|
<div class="w-full h-fit bg-white p-3 rounded-md shadow-md mt-5">
|
|
|
|
|
<div class="w-full bg-white h-fit rounded-md border border-gray-300">
|
|
|
|
|
<!-- TABLE HEADER -->
|
|
|
|
|
<div class="w-full flex h-[70px] rounded-t-md">
|
|
|
|
|
<div
|
|
|
|
|
class="w-[55%] flex justify-center items-center border-r border-b border-gray-300 bg-green-700 rounded-tl-md">
|
|
|
|
|
<p class="text-xl text-white">Task Name</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-[15%] flex justify-center items-center border-r border-b border-gray-300">
|
|
|
|
|
<p class="text-xl text-slate-700">Open</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-[15%] flex justify-center items-center border-r border-b border-gray-300">
|
|
|
|
|
<p class="text-xl text-slate-700">1/2/2021</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-[15%] flex justify-center items-center border-b border-gray-300">
|
|
|
|
|
<p class="text-xl text-slate-700">1/2/2022</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- TABLE BODY -->
|
|
|
|
|
<div class="w-full h-fit flex">
|
|
|
|
|
<!-- LEFT SIDE OF TABLE BODY -->
|
|
|
|
|
<div class="w-[55%] h-fit bg-white p-3 rounded-bl-md">
|
|
|
|
|
<!-- 1st row -->
|
|
|
|
|
<div class="w-full flex flex-col gap-2">
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Project:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">Osina Project</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Epic:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">epic</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Assigned To:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">Nataly</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Files:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">Documentation.pdf, Project.doc</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Tags:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">Live Streaming, Media Streaming</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-start items-center gap-2">
|
|
|
|
|
<p class="text-gray-400 text-base">Extra:</p>
|
|
|
|
|
<p class="text-slate-700 text-base">Yes</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- RIGHT SIDE OF TABLE BODY -->
|
|
|
|
|
<div class="w-[45%] h-fit bg-white flex flex-wrap justify-start rounded-br-md">
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Close</button>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
|
id="updateStatusButton" data-modal-url="{% url 'updatestatus' %}">Update
|
|
|
|
|
Status</button>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
|
id="addTimeButton" data-modal-url="{% url 'addtime' %}">Add
|
|
|
|
|
Time</button>
|
|
|
|
|
<button class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-red-500 text-white"
|
|
|
|
|
id="deleteTaskButton" data-modal-url="{% url 'deletetask' %}">Delete</button>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-blue-500 text-white">Update</button>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
|
id="showPointsButton" data-modal-url="{% url 'showpoints' %}">Show
|
|
|
|
|
Points</button>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
|
id="addPointButton" data-modal-url="{% url 'addpoint' %}">Add
|
|
|
|
|
Point</button>
|
|
|
|
|
<a href="./task-details.html" class="w-[33.33%]">
|
|
|
|
|
<button
|
|
|
|
|
class="w-full p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Details</button>
|
|
|
|
|
</a>
|
|
|
|
|
<button
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500 rounded-br-md"
|
|
|
|
|
id="timelineButton" data-modal-url="{% url 'timeline' %}">Timeline</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- RIGHT SIDE / USERS ACTIVITY -->
|
|
|
|
@ -445,6 +177,8 @@
|
|
|
|
|
<h1 class="text-2xl text-slate-700 text-center font-semibold">USERS ACTIVITY</h1>
|
|
|
|
|
<div class="w-full h-fit mt-2">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% for latest in latest_statuses_by_user %}
|
|
|
|
|
<!-- 1ST ROW -->
|
|
|
|
|
<div class="w-full flex flex-col py-3">
|
|
|
|
|
<div class="w-full flex flex-col justify-center items-start gap-2">
|
|
|
|
@ -479,111 +213,9 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
<!-- 2NT ROW -->
|
|
|
|
|
<div class="w-full flex flex-col py-3">
|
|
|
|
|
<div class="w-full flex flex-col justify-center items-start gap-2">
|
|
|
|
|
<div class="w-full flex justify-between items-center gap-2">
|
|
|
|
|
<div class="flex justify-start gap-2">
|
|
|
|
|
<div class="w-[45px] h-[45px] rounded-full">
|
|
|
|
|
<img src='{% static "images/avatar2.png" %}' alt="user profile"
|
|
|
|
|
class="w-full h-full object-cover">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex flex-col">
|
|
|
|
|
<h1 class="text-sm text-slate-700 font-semibold">Salim</h1>
|
|
|
|
|
<p class="text-sm text-gray-500">11:30 AM</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cursor-pointer">
|
|
|
|
|
<i class="fa fa-thumbs-up" style="color: rgb(184, 184, 184); font-size: 15px;"></i>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Status -->
|
|
|
|
|
<div class="w-full">
|
|
|
|
|
<p class="text-sm text-gray-500">Closed - Create the Osina home page</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Add comment section -->
|
|
|
|
|
<div class="w-full h-fit flex justify-between items-center border border-gray-200 mt-2 rounded-md">
|
|
|
|
|
<input type="text" placeholder="Add Comment..."
|
|
|
|
|
class="outline-none text-gray-500 p-2 w-[100%] text-sm h-[40px] rounded-tl-md rounded-bl-md">
|
|
|
|
|
<button class="w-fit px-3 py-2 bg-slate-800 rounded-tr-md rounded-br-md">
|
|
|
|
|
<i class="fa fa-send" style="color: white; font-size: 15px;"></i>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- 3RD ROW -->
|
|
|
|
|
<div class="w-full flex flex-col py-3">
|
|
|
|
|
<div class="w-full flex flex-col justify-center items-start gap-2">
|
|
|
|
|
<div class="w-full flex justify-between items-center gap-2">
|
|
|
|
|
<div class="flex justify-start gap-2">
|
|
|
|
|
<div class="w-[45px] h-[45px] rounded-full">
|
|
|
|
|
<img src='{% static "images/avatar3.png" %}' alt="user profile"
|
|
|
|
|
class="w-full h-full object-cover">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex flex-col">
|
|
|
|
|
<h1 class="text-sm text-slate-700 font-semibold">Emile</h1>
|
|
|
|
|
<p class="text-sm text-gray-500">11:30 AM</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cursor-pointer">
|
|
|
|
|
<i class="fa fa-thumbs-up" style="color: rgb(184, 184, 184); font-size: 15px;"></i>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Status -->
|
|
|
|
|
<div class="w-full">
|
|
|
|
|
<p class="text-sm text-gray-500">Closed - Create the Osina home page</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Add comment section -->
|
|
|
|
|
<div class="w-full h-fit flex justify-between items-center border border-gray-200 mt-2 rounded-md">
|
|
|
|
|
<input type="text" placeholder="Add Comment..."
|
|
|
|
|
class="outline-none text-gray-500 p-2 w-[100%] text-sm h-[40px] rounded-tl-md rounded-bl-md">
|
|
|
|
|
<button class="w-fit px-3 py-2 bg-slate-800 rounded-tr-md rounded-br-md">
|
|
|
|
|
<i class="fa fa-send" style="color: white; font-size: 15px;"></i>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- 4TH ROW -->
|
|
|
|
|
<div class="w-full flex flex-col py-3">
|
|
|
|
|
<div class="w-full flex flex-col justify-center items-start gap-2">
|
|
|
|
|
<div class="w-full flex justify-between items-center gap-2">
|
|
|
|
|
<div class="flex justify-start gap-2">
|
|
|
|
|
<div class="w-[45px] h-[45px] rounded-full">
|
|
|
|
|
<img src='{% static "images/avatar.svg" %}' alt="user profile"
|
|
|
|
|
class="w-full h-full object-cover">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex flex-col">
|
|
|
|
|
<h1 class="text-sm text-slate-700 font-semibold">Nataly</h1>
|
|
|
|
|
<p class="text-sm text-gray-500">11:30 AM</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cursor-pointer">
|
|
|
|
|
<i class="fa fa-thumbs-up" style="color: rgb(184, 184, 184); font-size: 15px;"></i>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Status -->
|
|
|
|
|
<div class="w-full">
|
|
|
|
|
<p class="text-sm text-gray-500">Closed - Create the Osina home page</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Add comment section -->
|
|
|
|
|
<div class="w-full h-fit flex justify-between items-center border border-gray-200 mt-2 rounded-md">
|
|
|
|
|
<input type="text" placeholder="Add Comment..."
|
|
|
|
|
class="outline-none text-gray-500 p-2 w-[100%] text-sm h-[40px] rounded-tl-md rounded-bl-md">
|
|
|
|
|
<button class="w-fit px-3 py-2 bg-slate-800 rounded-tr-md rounded-br-md">
|
|
|
|
|
<i class="fa fa-send" style="color: white; font-size: 15px;"></i>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|