Make sure all empty pages have a call to action

This commit is contained in:
kolaente 2021-01-17 20:21:33 +01:00
parent ec4c941fb1
commit 2139d4d528
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
5 changed files with 32 additions and 13 deletions

View file

@ -10,11 +10,14 @@
<div class="content">
<h1>Manage labels</h1>
<p>
<p v-if="labels.length > 0">
Click on a label to edit it.
You can edit all labels you created, you can use all labels which are associated with a task to whose
list
you have access.
list you have access.
</p>
<p v-else class="has-text-centered has-text-grey">
You currently do not have any labels.
<router-link :to="{name:'labels.create'}">Create a new label.</router-link>
</p>
</div>