Skip to content

Commit

Permalink
feat(dh): add status to metadata page
Browse files Browse the repository at this point in the history
  • Loading branch information
cmoinier committed Jan 5, 2024
1 parent 3d789bc commit ead530a
Showing 1 changed file with 16 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
<p
class="text-[28px] text-title text-center mb-6 font-title sm:text-left"
translate
>
record.metadata.about
</p>
<div class="flex flex-row justify-between">
<p
class="text-[28px] text-title text-center mb-6 font-title sm:text-left"
translate
>
record.metadata.about
</p>
<div *ngIf="metadata.status" class="flex items-start pt-3 pr-4">
<span
class="inline-flex items-center justify-center px-2 py-1 text-13 uppercase font-medium leading-none bg-primary text-white rounded opacity-40"
translate
>
domain.record.status.{{ metadata.status }}
</span>
</div>
</div>
<div class="mb-6 md-description sm:mb-4 sm:pr-16">
<gn-ui-content-ghost ghostClass="h-32" [showContent]="fieldReady('abstract')">
<gn-ui-max-lines [maxLines]="6" *ngIf="metadata.abstract">
Expand Down

0 comments on commit ead530a

Please sign in to comment.