Просмотр исходного кода

Home: drop the Status column from the sprint table

The active/archived chip was the only consumer of is_archived in the
list, and the flag has no functional effect anywhere yet — pull the
column until archiving actually means something.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
chiappa 2 дней назад
Родитель
Сommit
b8a66037ab
1 измененных файлов с 0 добавлено и 8 удалено
  1. 0 8
      views/home.twig

+ 0 - 8
views/home.twig

@@ -98,7 +98,6 @@
                             <th class="text-right px-4 py-2 font-semibold">Workers</th>
                             <th class="text-right px-4 py-2 font-semibold">Tasks</th>
                             <th class="text-right px-4 py-2 font-semibold">Reserve</th>
-                            <th class="text-left px-4 py-2 font-semibold">Status</th>
                         </tr>
                     </thead>
                     <tbody class="divide-y divide-slate-100 dark:divide-slate-700">
@@ -117,13 +116,6 @@
                                 <td class="px-4 py-2 text-right font-mono">
                                     {{ (s.reserveFraction * 100)|number_format(0) }}%
                                 </td>
-                                <td class="px-4 py-2">
-                                    {% if s.isArchived %}
-                                        <span class="inline-block px-2 py-0.5 text-xs bg-slate-100 text-slate-600 rounded dark:bg-slate-700 dark:text-slate-300">archived</span>
-                                    {% else %}
-                                        <span class="inline-block px-2 py-0.5 text-xs bg-green-100 text-green-800 rounded dark:bg-green-900 dark:text-green-200">active</span>
-                                    {% endif %}
-                                </td>
                             </tr>
                         {% endfor %}
                     </tbody>