|
|
@ -1,8 +1,8 @@
|
|
|
|
{% extends "main.html" %}
|
|
|
|
{% extends "main.html" %}
|
|
|
|
{%load static%}
|
|
|
|
{%load static%}
|
|
|
|
{% block content %}
|
|
|
|
{% block content %}
|
|
|
|
<!-- NOTES SECTION -->
|
|
|
|
<!-- NOTES SECTION -->
|
|
|
|
<div class="w-full h-fit flex justify-between items-center px-10 pb-5">
|
|
|
|
<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="relative w-full h-fit bg-white shadow-md rounded-md p-5">
|
|
|
|
<div class="w-full flex justify-between items-center">
|
|
|
|
<div class="w-full flex justify-between items-center">
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
@ -16,7 +16,7 @@
|
|
|
|
Notes</button>
|
|
|
|
Notes</button>
|
|
|
|
<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"
|
|
|
|
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">
|
|
|
|
id="addNoteButton" data-modal-url="{% url 'addnote' %}">
|
|
|
|
<i class="fa fa-plus"></i>
|
|
|
|
<i class="fa fa-plus"></i>
|
|
|
|
</button>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -27,22 +27,21 @@
|
|
|
|
id="notesContainer">
|
|
|
|
id="notesContainer">
|
|
|
|
|
|
|
|
|
|
|
|
{% for note in notes %}
|
|
|
|
{% for note in notes %}
|
|
|
|
<div class="w-[16.33%] h-[150px] shadow-xl p-5" style="background-color: {{note.color}}">
|
|
|
|
<div class="w-[16.33%] h-[150px] shadow-xl p-5 rounded-bl-lg" style="background-color: {{note.color}}">
|
|
|
|
<p class="text-base text-slate-800">{{note.text}}</p>
|
|
|
|
<p class="text-base text-slate-800">{{note.text}}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- TASKS AND USERS ACTIVITY SECTION -->
|
|
|
|
<!-- TASKS AND USERS ACTIVITY SECTION -->
|
|
|
|
<div class="w-full flex items-stretch justify-between gap-[2.5%] px-10 pb-5">
|
|
|
|
<div class="w-full flex items-stretch justify-between gap-[2.5%] px-10 pb-5">
|
|
|
|
<!-- LEFT SIDE / TASKS SECTION -->
|
|
|
|
<!-- LEFT SIDE / TASKS SECTION -->
|
|
|
|
<div class="w-[74.5%]">
|
|
|
|
<div class="w-[74.5%]">
|
|
|
|
<!-- TASK FILTERING BAR -->
|
|
|
|
<!-- TASK FILTERING BAR -->
|
|
|
|
<div
|
|
|
|
<div class="w-full h-fit bg-white shadow-md rounded-md flex justify-center items-center gap-10 py-5 px-3">
|
|
|
|
class="w-full h-fit bg-white shadow-md rounded-md flex justify-center items-center gap-10 py-5 px-3">
|
|
|
|
|
|
|
|
<a class="text-xl text-gray-500">Tasks</a>
|
|
|
|
<a class="text-xl text-gray-500">Tasks</a>
|
|
|
|
<select name="" id=""
|
|
|
|
<select name="" id=""
|
|
|
|
class="border border-gray-300 p-2 rounded-md outline-none w-[160px] text-gray-500 h-[40px]">
|
|
|
|
class="border border-gray-300 p-2 rounded-md outline-none w-[160px] text-gray-500 h-[40px]">
|
|
|
@ -126,24 +125,23 @@
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Close</button>
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Close</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
id="updateStatusButton">Update
|
|
|
|
id="updateStatusButton" data-modal-url="{% url 'updatestatus' %}">Update
|
|
|
|
Status</button>
|
|
|
|
Status</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
id="addTimeButton">Add
|
|
|
|
id="addTimeButton" data-modal-url="{% url 'addtime' %}">Add
|
|
|
|
Time</button>
|
|
|
|
Time</button>
|
|
|
|
<button
|
|
|
|
<button class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-red-500 text-white"
|
|
|
|
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>
|
|
|
|
id="deleteTaskButton">Delete</button>
|
|
|
|
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-blue-500 text-white">Update</button>
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-blue-500 text-white">Update</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
id="showPointsButton">Show
|
|
|
|
id="showPointsButton" data-modal-url="{% url 'showpoints' %}">Show
|
|
|
|
Points</button>
|
|
|
|
Points</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500"
|
|
|
|
id="addPointButton">Add
|
|
|
|
id="addPointButton" data-modal-url="{% url 'addpoint' %}">Add
|
|
|
|
Point</button>
|
|
|
|
Point</button>
|
|
|
|
<a href="./task-details.html" class="w-[33.33%]">
|
|
|
|
<a href="./task-details.html" class="w-[33.33%]">
|
|
|
|
<button
|
|
|
|
<button
|
|
|
@ -151,93 +149,7 @@
|
|
|
|
</a>
|
|
|
|
</a>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500 rounded-br-md"
|
|
|
|
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">Timline</button>
|
|
|
|
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">Update
|
|
|
|
|
|
|
|
Status</button>
|
|
|
|
|
|
|
|
<button
|
|
|
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Add
|
|
|
|
|
|
|
|
Time</button>
|
|
|
|
|
|
|
|
<button
|
|
|
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-red-500 text-white">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">Show
|
|
|
|
|
|
|
|
Points</button>
|
|
|
|
|
|
|
|
<button
|
|
|
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Add
|
|
|
|
|
|
|
|
Point</button>
|
|
|
|
|
|
|
|
<button
|
|
|
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Details</button>
|
|
|
|
|
|
|
|
<button
|
|
|
|
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500 rounded-br-md">Timline</button>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -305,25 +217,32 @@
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Close</button>
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Close</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Update
|
|
|
|
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>
|
|
|
|
Status</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Add
|
|
|
|
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>
|
|
|
|
Time</button>
|
|
|
|
<button
|
|
|
|
<button class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-red-500 text-white"
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-red-500 text-white">Delete</button>
|
|
|
|
id="deleteTaskButton" data-modal-url="{% url 'deletetask' %}">Delete</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-blue-500 text-white">Update</button>
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-blue-500 text-white">Update</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Show
|
|
|
|
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>
|
|
|
|
Points</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Add
|
|
|
|
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>
|
|
|
|
Point</button>
|
|
|
|
|
|
|
|
<a href="./task-details.html" class="w-[33.33%]">
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Details</button>
|
|
|
|
class="w-full p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Details</button>
|
|
|
|
|
|
|
|
</a>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500 rounded-br-md">Timline</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>
|
|
|
|
</div>
|
|
|
@ -391,25 +310,32 @@
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Close</button>
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Close</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Update
|
|
|
|
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>
|
|
|
|
Status</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Add
|
|
|
|
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>
|
|
|
|
Time</button>
|
|
|
|
<button
|
|
|
|
<button class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-red-500 text-white"
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-red-500 text-white">Delete</button>
|
|
|
|
id="deleteTaskButton" data-modal-url="{% url 'deletetask' %}">Delete</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-blue-500 text-white">Update</button>
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-blue-500 text-white">Update</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Show
|
|
|
|
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>
|
|
|
|
Points</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Add
|
|
|
|
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>
|
|
|
|
Point</button>
|
|
|
|
|
|
|
|
<a href="./task-details.html" class="w-[33.33%]">
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Details</button>
|
|
|
|
class="w-full p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Details</button>
|
|
|
|
|
|
|
|
</a>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500 rounded-br-md">Timline</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>
|
|
|
|
</div>
|
|
|
@ -477,25 +403,32 @@
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Close</button>
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Close</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Update
|
|
|
|
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>
|
|
|
|
Status</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Add
|
|
|
|
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>
|
|
|
|
Time</button>
|
|
|
|
<button
|
|
|
|
<button class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-red-500 text-white"
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-red-500 text-white">Delete</button>
|
|
|
|
id="deleteTaskButton" data-modal-url="{% url 'deletetask' %}">Delete</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-blue-500 text-white">Update</button>
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-blue-500 text-white">Update</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Show
|
|
|
|
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>
|
|
|
|
Points</button>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Add
|
|
|
|
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>
|
|
|
|
Point</button>
|
|
|
|
|
|
|
|
<a href="./task-details.html" class="w-[33.33%]">
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Details</button>
|
|
|
|
class="w-full p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500">Details</button>
|
|
|
|
|
|
|
|
</a>
|
|
|
|
<button
|
|
|
|
<button
|
|
|
|
class="w-[33.33%] p-2 border border-gray-200 text-base h-[70px] bg-gray-300 text-gray-500 rounded-br-md">Timline</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>
|
|
|
|
</div>
|
|
|
@ -507,8 +440,12 @@
|
|
|
|
<h1 class="text-2xl text-slate-700 text-center font-semibold">USERS ACTIVITY</h1>
|
|
|
|
<h1 class="text-2xl text-slate-700 text-center font-semibold">USERS ACTIVITY</h1>
|
|
|
|
<div class="w-full h-[300px] mt-2">
|
|
|
|
<div class="w-full h-[300px] mt-2">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 1ST ROW -->
|
|
|
|
<div class="w-full flex flex-col py-3">
|
|
|
|
<div class="w-full flex flex-col py-3">
|
|
|
|
<div class="w-full flex justify-start gap-2 items-center">
|
|
|
|
<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">
|
|
|
|
<div class="w-[45px] h-[45px] rounded-full">
|
|
|
|
<img src='{% static "images/avatar.svg" %}' alt="user profile"
|
|
|
|
<img src='{% static "images/avatar.svg" %}' alt="user profile"
|
|
|
|
class="w-full h-full object-cover">
|
|
|
|
class="w-full h-full object-cover">
|
|
|
@ -516,15 +453,20 @@
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<h1 class="text-sm text-slate-700 font-semibold">Nataly</h1>
|
|
|
|
<h1 class="text-sm text-slate-700 font-semibold">Nataly</h1>
|
|
|
|
<p class="text-sm text-gray-500">11:30 AM</p>
|
|
|
|
<p class="text-sm text-gray-500">11:30 AM</p>
|
|
|
|
<p class="text-sm text-gray-500">Closed - Create the Osina home page</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="cursor-pointer">
|
|
|
|
<div class="cursor-pointer">
|
|
|
|
<i class="fa fa-thumbs-up" style="color: rgb(184, 184, 184); font-size: 15px;"></i>
|
|
|
|
<i class="fa fa-thumbs-up" style="color: rgb(184, 184, 184); font-size: 15px;"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</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 -->
|
|
|
|
<!-- Add comment section -->
|
|
|
|
<div
|
|
|
|
<div class="w-full h-fit flex justify-between items-center border border-gray-200 mt-2 rounded-md">
|
|
|
|
class="w-full h-fit flex justify-between items-center border border-gray-200 mt-2 rounded-md">
|
|
|
|
|
|
|
|
<input type="text" placeholder="Add Comment..."
|
|
|
|
<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">
|
|
|
|
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">
|
|
|
|
<button class="w-fit px-3 py-2 bg-slate-800 rounded-tr-md rounded-br-md">
|
|
|
@ -532,9 +474,13 @@
|
|
|
|
</button>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 2NT ROW -->
|
|
|
|
<div class="w-full flex flex-col py-3">
|
|
|
|
<div class="w-full flex flex-col py-3">
|
|
|
|
<div class="w-full flex justify-start gap-2 items-center">
|
|
|
|
<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">
|
|
|
|
<div class="w-[45px] h-[45px] rounded-full">
|
|
|
|
<img src='{% static "images/avatar2.png" %}' alt="user profile"
|
|
|
|
<img src='{% static "images/avatar2.png" %}' alt="user profile"
|
|
|
|
class="w-full h-full object-cover">
|
|
|
|
class="w-full h-full object-cover">
|
|
|
@ -542,15 +488,20 @@
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<h1 class="text-sm text-slate-700 font-semibold">Salim</h1>
|
|
|
|
<h1 class="text-sm text-slate-700 font-semibold">Salim</h1>
|
|
|
|
<p class="text-sm text-gray-500">11:30 AM</p>
|
|
|
|
<p class="text-sm text-gray-500">11:30 AM</p>
|
|
|
|
<p class="text-sm text-gray-500">Closed - Create the Osina home page</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="cursor-pointer">
|
|
|
|
<div class="cursor-pointer">
|
|
|
|
<i class="fa fa-thumbs-up" style="color: rgb(184, 184, 184); font-size: 15px;"></i>
|
|
|
|
<i class="fa fa-thumbs-up" style="color: rgb(184, 184, 184); font-size: 15px;"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</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 -->
|
|
|
|
<!-- Add comment section -->
|
|
|
|
<div
|
|
|
|
<div class="w-full h-fit flex justify-between items-center border border-gray-200 mt-2 rounded-md">
|
|
|
|
class="w-full h-fit flex justify-between items-center border border-gray-200 mt-2 rounded-md">
|
|
|
|
|
|
|
|
<input type="text" placeholder="Add Comment..."
|
|
|
|
<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">
|
|
|
|
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">
|
|
|
|
<button class="w-fit px-3 py-2 bg-slate-800 rounded-tr-md rounded-br-md">
|
|
|
@ -558,25 +509,34 @@
|
|
|
|
</button>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 3RD ROW -->
|
|
|
|
<div class="w-full flex flex-col py-3">
|
|
|
|
<div class="w-full flex flex-col py-3">
|
|
|
|
<div class="w-full flex justify-start gap-2 items-center">
|
|
|
|
<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">
|
|
|
|
<div class="w-[45px] h-[45px] rounded-full">
|
|
|
|
<img src='{% static "images/avatar3.png" %}' alt="user profile"
|
|
|
|
<img src='{% static "images/avatar3.png" %}' alt="user profile"
|
|
|
|
class="w-full h-full object-cover">
|
|
|
|
class="w-full h-full object-cover">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<h1 class="text-sm text-slate-700 font-semibold">Emile</h1>
|
|
|
|
<h1 class="text-sm text-slate-700 font-semibold">Emile</h1>
|
|
|
|
<p class="text-sm text-gray-500">12:30 PM</p>
|
|
|
|
<p class="text-sm text-gray-500">11:30 AM</p>
|
|
|
|
<p class="text-sm text-gray-500">Working - Create the Osina home page</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="cursor-pointer">
|
|
|
|
<div class="cursor-pointer">
|
|
|
|
<i class="fa fa-thumbs-up" style="color: rgb(184, 184, 184); font-size: 15px;"></i>
|
|
|
|
<i class="fa fa-thumbs-up" style="color: rgb(184, 184, 184); font-size: 15px;"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</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 -->
|
|
|
|
<!-- Add comment section -->
|
|
|
|
<div
|
|
|
|
<div class="w-full h-fit flex justify-between items-center border border-gray-200 mt-2 rounded-md">
|
|
|
|
class="w-full h-fit flex justify-between items-center border border-gray-200 mt-2 rounded-md">
|
|
|
|
|
|
|
|
<input type="text" placeholder="Add Comment..."
|
|
|
|
<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">
|
|
|
|
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">
|
|
|
|
<button class="w-fit px-3 py-2 bg-slate-800 rounded-tr-md rounded-br-md">
|
|
|
@ -584,9 +544,13 @@
|
|
|
|
</button>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 4TH ROW -->
|
|
|
|
<div class="w-full flex flex-col py-3">
|
|
|
|
<div class="w-full flex flex-col py-3">
|
|
|
|
<div class="w-full flex justify-start gap-2 items-center">
|
|
|
|
<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">
|
|
|
|
<div class="w-[45px] h-[45px] rounded-full">
|
|
|
|
<img src='{% static "images/avatar.svg" %}' alt="user profile"
|
|
|
|
<img src='{% static "images/avatar.svg" %}' alt="user profile"
|
|
|
|
class="w-full h-full object-cover">
|
|
|
|
class="w-full h-full object-cover">
|
|
|
@ -594,41 +558,20 @@
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<h1 class="text-sm text-slate-700 font-semibold">Nataly</h1>
|
|
|
|
<h1 class="text-sm text-slate-700 font-semibold">Nataly</h1>
|
|
|
|
<p class="text-sm text-gray-500">11:30 AM</p>
|
|
|
|
<p class="text-sm text-gray-500">11:30 AM</p>
|
|
|
|
<p class="text-sm text-gray-500">Closed - Create Enooma home page</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="cursor-pointer">
|
|
|
|
<div class="cursor-pointer">
|
|
|
|
<i class="fa fa-thumbs-up" style="color: rgb(184, 184, 184); font-size: 15px;"></i>
|
|
|
|
<i class="fa fa-thumbs-up" style="color: rgb(184, 184, 184); font-size: 15px;"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</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 class="w-full flex flex-col py-3">
|
|
|
|
<!-- Status -->
|
|
|
|
<div class="w-full flex justify-start gap-2 items-center">
|
|
|
|
<div class="w-full">
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<p class="text-sm text-gray-500">Closed - Create the Osina home page</p>
|
|
|
|
<p class="text-sm text-gray-500">Closed - Create the Osina home page</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>
|
|
|
|
|
|
|
|
<!-- Add comment section -->
|
|
|
|
<!-- Add comment section -->
|
|
|
|
<div
|
|
|
|
<div class="w-full h-fit flex justify-between items-center border border-gray-200 mt-2 rounded-md">
|
|
|
|
class="w-full h-fit flex justify-between items-center border border-gray-200 mt-2 rounded-md">
|
|
|
|
|
|
|
|
<input type="text" placeholder="Add Comment..."
|
|
|
|
<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">
|
|
|
|
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">
|
|
|
|
<button class="w-fit px-3 py-2 bg-slate-800 rounded-tr-md rounded-br-md">
|
|
|
@ -639,12 +582,12 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- TICKETS SECTION -->
|
|
|
|
<!-- TICKETS SECTION -->
|
|
|
|
<div class="w-full h-fit px-10 py-5">
|
|
|
|
<div class="w-full h-fit px-10 py-5">
|
|
|
|
<!-- TICKETS FILTERING BAR -->
|
|
|
|
<!-- TICKETS FILTERING BAR -->
|
|
|
|
<div
|
|
|
|
<div class="w-full h-fit bg-white shadow-md rounded-md flex justify-center items-center gap-10 py-5 px-3">
|
|
|
|
class="w-full h-fit bg-white shadow-md rounded-md flex justify-center items-center gap-10 py-5 px-3">
|
|
|
|
|
|
|
|
<a class="text-xl text-gray-500">Tickets</a>
|
|
|
|
<a class="text-xl text-gray-500">Tickets</a>
|
|
|
|
<select name="" id=""
|
|
|
|
<select name="" id=""
|
|
|
|
class="border border-gray-300 p-2 rounded-md outline-none w-[160px] text-gray-500 h-[40px]">
|
|
|
|
class="border border-gray-300 p-2 rounded-md outline-none w-[160px] text-gray-500 h-[40px]">
|
|
|
@ -716,13 +659,11 @@
|
|
|
|
<div class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2">
|
|
|
|
<div class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2">
|
|
|
|
<p class="text-sm text-gray-500 text-center">Development</p>
|
|
|
|
<p class="text-sm text-gray-500 text-center">Development</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
<div class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2 bg-green-700">
|
|
|
|
class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2 bg-green-700">
|
|
|
|
|
|
|
|
<p class="text-sm text-white text-center">Open</p>
|
|
|
|
<p class="text-sm text-white text-center">Open</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="w-[5%] h-full flex justify-center items-center gap-3 p-2">
|
|
|
|
<div class="w-[5%] h-full flex justify-center items-center gap-3 p-2">
|
|
|
|
<i class="fa fa-edit"
|
|
|
|
<i class="fa fa-edit" style="color: cornflowerblue; font-size: 15px; cursor: pointer;"></i>
|
|
|
|
style="color: cornflowerblue; font-size: 15px; cursor: pointer;"></i>
|
|
|
|
|
|
|
|
<i class="fa fa-trash" style="color: red; font-size: 15px; cursor: pointer;"></i>
|
|
|
|
<i class="fa fa-trash" style="color: red; font-size: 15px; cursor: pointer;"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -747,13 +688,11 @@
|
|
|
|
<div class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2">
|
|
|
|
<div class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2">
|
|
|
|
<p class="text-sm text-gray-500 text-center">Development</p>
|
|
|
|
<p class="text-sm text-gray-500 text-center">Development</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
<div class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2 bg-yellow-400">
|
|
|
|
class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2 bg-yellow-400">
|
|
|
|
|
|
|
|
<p class="text-sm text-white text-center">Working on</p>
|
|
|
|
<p class="text-sm text-white text-center">Working on</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="w-[5%] h-full flex justify-center items-center gap-3 p-2">
|
|
|
|
<div class="w-[5%] h-full flex justify-center items-center gap-3 p-2">
|
|
|
|
<i class="fa fa-edit"
|
|
|
|
<i class="fa fa-edit" style="color: cornflowerblue; font-size: 15px; cursor: pointer;"></i>
|
|
|
|
style="color: cornflowerblue; font-size: 15px; cursor: pointer;"></i>
|
|
|
|
|
|
|
|
<i class="fa fa-trash" style="color: red; font-size: 15px; cursor: pointer;"></i>
|
|
|
|
<i class="fa fa-trash" style="color: red; font-size: 15px; cursor: pointer;"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -779,13 +718,11 @@
|
|
|
|
<div class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2">
|
|
|
|
<div class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2">
|
|
|
|
<p class="text-sm text-gray-500 text-center">Development</p>
|
|
|
|
<p class="text-sm text-gray-500 text-center">Development</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
<div class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2 bg-blue-500">
|
|
|
|
class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2 bg-blue-500">
|
|
|
|
|
|
|
|
<p class="text-sm text-white text-center">Waiting for client reply</p>
|
|
|
|
<p class="text-sm text-white text-center">Waiting for client reply</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="w-[5%] h-full flex justify-center items-center gap-3 p-2">
|
|
|
|
<div class="w-[5%] h-full flex justify-center items-center gap-3 p-2">
|
|
|
|
<i class="fa fa-edit"
|
|
|
|
<i class="fa fa-edit" style="color: cornflowerblue; font-size: 15px; cursor: pointer;"></i>
|
|
|
|
style="color: cornflowerblue; font-size: 15px; cursor: pointer;"></i>
|
|
|
|
|
|
|
|
<i class="fa fa-trash" style="color: red; font-size: 15px; cursor: pointer;"></i>
|
|
|
|
<i class="fa fa-trash" style="color: red; font-size: 15px; cursor: pointer;"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -811,13 +748,11 @@
|
|
|
|
<div class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2">
|
|
|
|
<div class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2">
|
|
|
|
<p class="text-sm text-gray-500 text-center">Development</p>
|
|
|
|
<p class="text-sm text-gray-500 text-center">Development</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
<div class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2 bg-green-700">
|
|
|
|
class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2 bg-green-700">
|
|
|
|
|
|
|
|
<p class="text-sm text-white text-center">Open</p>
|
|
|
|
<p class="text-sm text-white text-center">Open</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="w-[5%] h-full flex justify-center items-center gap-3 p-2">
|
|
|
|
<div class="w-[5%] h-full flex justify-center items-center gap-3 p-2">
|
|
|
|
<i class="fa fa-edit"
|
|
|
|
<i class="fa fa-edit" style="color: cornflowerblue; font-size: 15px; cursor: pointer;"></i>
|
|
|
|
style="color: cornflowerblue; font-size: 15px; cursor: pointer;"></i>
|
|
|
|
|
|
|
|
<i class="fa fa-trash" style="color: red; font-size: 15px; cursor: pointer;"></i>
|
|
|
|
<i class="fa fa-trash" style="color: red; font-size: 15px; cursor: pointer;"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -843,24 +778,22 @@
|
|
|
|
<div class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2">
|
|
|
|
<div class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2">
|
|
|
|
<p class="text-sm text-gray-500 text-center">Development</p>
|
|
|
|
<p class="text-sm text-gray-500 text-center">Development</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
<div class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2 bg-red-500">
|
|
|
|
class="w-[10%] h-full flex justify-center items-center border-r border-gray-300 p-2 bg-red-500">
|
|
|
|
|
|
|
|
<p class="text-sm text-white text-center">Closed</p>
|
|
|
|
<p class="text-sm text-white text-center">Closed</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="w-[5%] h-full flex justify-center items-center gap-3 p-2">
|
|
|
|
<div class="w-[5%] h-full flex justify-center items-center gap-3 p-2">
|
|
|
|
<i class="fa fa-edit"
|
|
|
|
<i class="fa fa-edit" style="color: cornflowerblue; font-size: 15px; cursor: pointer;"></i>
|
|
|
|
style="color: cornflowerblue; font-size: 15px; cursor: pointer;"></i>
|
|
|
|
|
|
|
|
<i class="fa fa-trash" style="color: red; font-size: 14px; cursor: pointer;"></i>
|
|
|
|
<i class="fa fa-trash" style="color: red; font-size: 14px; cursor: pointer;"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- POPUP MODAL -->
|
|
|
|
<!-- 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-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">
|
|
|
|
<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"
|
|
|
|
<button class="absolute top-3 right-5 text-slate-800 text-xl cursor-pointer outline-none border-none"
|
|
|
|
id="closeModalButton">
|
|
|
|
id="closeModalButton">
|
|
|
@ -868,11 +801,15 @@
|
|
|
|
</button>
|
|
|
|
</button>
|
|
|
|
<iframe id="popupModalFrame" frameborder="0"></iframe>
|
|
|
|
<iframe id="popupModalFrame" frameborder="0"></iframe>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript" src='{% static "js/pop-modals.js" %}'></script>
|
|
|
|
<script type="text/javascript" src='{% static "js/pop-modals.js" %}'></script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!---------------------- 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>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock content %}
|
|
|
|
{% endblock content %}
|