Restyle sequence list links to shot and event logs

This commit is contained in:
D. Berge
2023-10-31 19:46:07 +01:00
parent 2c21f8f7ef
commit 08e6c4a2de

View File

@@ -332,19 +332,31 @@
</template>
<template v-slot:item.sequence="{value}">
<a
:href="`/projects/${$route.params.project}/log/sequence/${value}`"
title="View the event log for this sequence">{{value}}</a>
<div style="white-space:nowrap;">
{{value}}
<a
:href="`/projects/${$route.params.project}/sequences/${value}`"
title="View the shotlog for this sequence"
>
<v-icon
small
right
>mdi-format-list-numbered</v-icon>
</a>
<a
:href="`/projects/${$route.params.project}/log/sequence/${value}`"
title="View the event log for this sequence"
>
<v-icon
small
right
color="blue"
>mdi-format-list-bulleted-type</v-icon>
</a>
<a
:href="`/projects/${$route.params.project}/sequences/${value}`"
title="View the shotlog for this sequence"
>
<v-icon
small
right
color="teal"
>mdi-format-list-numbered</v-icon>
</a>
</div>
</template>
<template v-slot:item.line="{value}">