Spaces:
Running
Running
User commited on
Commit ·
f608ab4
1
Parent(s): 9cf881e
add: minor adjustments
Browse files
TaskTrackingSystem.WebApp/Components/Pages/OverdueTasksReport.razor
CHANGED
|
@@ -140,7 +140,6 @@
|
|
| 140 |
<th class="px-6 py-3 text-left text-xs font-semibold text-slate-500 uppercase tracking-wider">Days Overdue</th>
|
| 141 |
<th class="px-6 py-3 text-left text-xs font-semibold text-slate-500 uppercase tracking-wider">Priority</th>
|
| 142 |
<th class="px-6 py-3 text-left text-xs font-semibold text-slate-500 uppercase tracking-wider">Status</th>
|
| 143 |
-
<th class="px-6 py-3 text-right text-xs font-semibold text-slate-500 uppercase tracking-wider">Actions</th>
|
| 144 |
</tr>
|
| 145 |
</thead>
|
| 146 |
<tbody class="divide-y divide-slate-100">
|
|
@@ -226,17 +225,6 @@
|
|
| 226 |
}
|
| 227 |
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium @statusClass">@statusLabel</span>
|
| 228 |
</td>
|
| 229 |
-
<td class="px-6 py-4 text-right space-x-3 whitespace-nowrap">
|
| 230 |
-
<button @onclick="() => RemindAssignee(task)" class="text-xs font-semibold text-violet-600 hover:text-violet-900 transition-colors font-sans">
|
| 231 |
-
Remind
|
| 232 |
-
</button>
|
| 233 |
-
@if (canUpdateTask)
|
| 234 |
-
{
|
| 235 |
-
<button @onclick="() => OpenAdjustDueDateModal(task)" class="text-xs font-semibold text-slate-600 hover:text-slate-900 transition-colors font-sans">
|
| 236 |
-
Adjust Due Date
|
| 237 |
-
</button>
|
| 238 |
-
}
|
| 239 |
-
</td>
|
| 240 |
</tr>
|
| 241 |
}
|
| 242 |
}
|
|
|
|
| 140 |
<th class="px-6 py-3 text-left text-xs font-semibold text-slate-500 uppercase tracking-wider">Days Overdue</th>
|
| 141 |
<th class="px-6 py-3 text-left text-xs font-semibold text-slate-500 uppercase tracking-wider">Priority</th>
|
| 142 |
<th class="px-6 py-3 text-left text-xs font-semibold text-slate-500 uppercase tracking-wider">Status</th>
|
|
|
|
| 143 |
</tr>
|
| 144 |
</thead>
|
| 145 |
<tbody class="divide-y divide-slate-100">
|
|
|
|
| 225 |
}
|
| 226 |
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium @statusClass">@statusLabel</span>
|
| 227 |
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 228 |
</tr>
|
| 229 |
}
|
| 230 |
}
|
TaskTrackingSystem.WebApp/Components/Pages/Projects.razor
CHANGED
|
@@ -90,17 +90,8 @@
|
|
| 90 |
<td class="px-6 py-4 text-sm text-slate-400">@DisplayFormats.Date(project.CreatedAt)</td>
|
| 91 |
<td class="px-6 py-4 text-right">
|
| 92 |
<div class="flex items-center justify-end space-x-2">
|
| 93 |
-
|
| 94 |
-
<i data-lucide="kanban" class="h-4 w-4"></i>
|
| 95 |
-
</button>
|
| 96 |
-
@if (canAssignProject || canEditProject || canDeleteProject)
|
| 97 |
{
|
| 98 |
-
@if (canAssignProject)
|
| 99 |
-
{
|
| 100 |
-
<button @onclick="() => OpenAssignModal(project)" class="rounded-lg p-1.5 text-slate-400 hover:bg-indigo-50 hover:text-indigo-600 transition-all" title="Assign Members">
|
| 101 |
-
<i data-lucide="user-plus" class="h-4 w-4"></i>
|
| 102 |
-
</button>
|
| 103 |
-
}
|
| 104 |
@if (canEditProject)
|
| 105 |
{
|
| 106 |
<button @onclick="() => OpenEditModal(project)" class="rounded-lg p-1.5 text-slate-400 hover:bg-amber-50 hover:text-amber-600 transition-all" title="Edit">
|
|
|
|
| 90 |
<td class="px-6 py-4 text-sm text-slate-400">@DisplayFormats.Date(project.CreatedAt)</td>
|
| 91 |
<td class="px-6 py-4 text-right">
|
| 92 |
<div class="flex items-center justify-end space-x-2">
|
| 93 |
+
@if (canEditProject || canDeleteProject)
|
|
|
|
|
|
|
|
|
|
| 94 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 95 |
@if (canEditProject)
|
| 96 |
{
|
| 97 |
<button @onclick="() => OpenEditModal(project)" class="rounded-lg p-1.5 text-slate-400 hover:bg-amber-50 hover:text-amber-600 transition-all" title="Edit">
|