feat: separate completed/retired projects
also changes the colours for Hiatus from red to orange, red now signifying Retired
This commit is contained in:
parent
de41078365
commit
486b53d9d7
@ -14,5 +14,8 @@ public enum ProjectStatus
|
|||||||
Hiatus,
|
Hiatus,
|
||||||
|
|
||||||
[Description("The project is no longer being worked on.")]
|
[Description("The project is no longer being worked on.")]
|
||||||
Past
|
Past,
|
||||||
|
|
||||||
|
[Description("The project has been retired with no plans for completion.")]
|
||||||
|
Retired,
|
||||||
}
|
}
|
||||||
|
@ -57,11 +57,15 @@
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case ProjectStatus.Past:
|
case ProjectStatus.Past:
|
||||||
<span class="badge rounded-pill text-bg-primary">Completed / Retired</span>
|
<span class="badge rounded-pill text-bg-primary">Completed</span>
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ProjectStatus.Hiatus:
|
case ProjectStatus.Hiatus:
|
||||||
<span class="badge rounded-pill text-bg-danger">On Hiatus</span>
|
<span class="badge rounded-pill text-bg-warning">On Hiatus</span>
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ProjectStatus.Retired:
|
||||||
|
<span class="badge rounded-pill text-bg-danger">Retired</span>
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
</td>
|
</td>
|
||||||
|
Loading…
Reference in New Issue
Block a user