kanban > steps : add dtl indicator

This commit is contained in:
isUnknown 2025-01-23 17:39:40 +01:00
parent 7038185e7f
commit 30fbc0e4e8
9 changed files with 222 additions and 156 deletions

View file

@ -1,19 +1,22 @@
<template>
<article class="project-item | flex | rounded-2xl | px-32 py-32">
<article
class="project-item | flex | rounded-2xl | px-32 py-32"
:data-dtl="project.isDTLEnabled ? 'true' : undefined"
>
<hgroup>
<h3>
<router-link
:to="isEmptyBrief(project) ? project.uri + '/client-brief' : project.uri"
:to="
isEmptyBrief(project) ? project.uri + '/client-brief' : project.uri
"
class="link-full"
>
{{ project.title }}
{{ project.title }}
</router-link>
</h3>
<p>
Dernière mise à jour le
<time :datetime="project.modified">{{
frenchFormattedModified
}}</time>
<time :datetime="project.modified">{{ frenchFormattedModified }}</time>
</p>
</hgroup>
<img :src="project.logo" alt="Logo" class="project-logo | rounded-sm" />