emile 2 weeks ago
parent 31a924f6d4
commit f1620d653b

@ -41,6 +41,10 @@
<div class="w-full flex flex-col gap-5 mt-5"> <div class="w-full flex flex-col gap-5 mt-5">
<div>
<p class="text-gray-500 text-xl">Milestone: <span
class="text-slate-800 text-xl font-semibold">{{task.milestone.name}}</span></p>
</div>
<div> <div>
<p class="text-gray-500 text-xl">Description: <span <p class="text-gray-500 text-xl">Description: <span
class="text-slate-800 text-xl font-semibold">{{task.description}}</span></p> class="text-slate-800 text-xl font-semibold">{{task.description}}</span></p>

@ -6,7 +6,7 @@
<div class="w-full rounded-md grid grid-cols-1 l:grid-cols-2"> <div class="w-full rounded-md grid grid-cols-1 l:grid-cols-2">
<div <div
class="w-full flex flex-col justify-center items-center gap-2 border-r border-b border-gray-200 {% if task.status == 'Open' %}bg-secondosiblue{% endif %} {% if task.status == 'Working On' %}bg-yellow-500{% endif %} {% if task.status == 'Closed' %}bg-green-700{% endif %} rounded-t-md l:rounded-tr-none l:rounded-l-md text-base text-white text-center py-3 px-3 bg-opacity-70"> class="w-full flex flex-col justify-center items-center gap-2 border-r border-b border-gray-200 {% if task.status == 'Open' %}bg-secondosiblue{% endif %} {% if task.status == 'Working On' %}bg-yellow-500{% endif %} {% if task.status == 'Closed' %}bg-green-700{% endif %} rounded-t-md l:rounded-tr-none l:rounded-l-md text-base text-white text-center py-3 px-3 bg-opacity-70">
<p>{{task.name}}</p> <p>{{task.name}} ({{ task.milestone.name }})</p>
<div class="w-full flex justify-center items-center gap-2"> <div class="w-full flex justify-center items-center gap-2">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"

Loading…
Cancel
Save