Files
mantra.press/server/views/library.pug

26 lines
919 B
Plaintext
Raw Normal View History

2021-12-19 18:17:51 +02:00
extend templates/layout.pug
block content
.container
.center
h1 Library
a.btn.black(href="/library/add") add artifact
2022-01-07 00:28:07 +02:00
if artifacts.length == 0
2022-01-09 02:01:27 +02:00
p.flow-text You currently have no content to manage/translate
2021-12-19 18:17:51 +02:00
else
.row
2022-01-07 00:28:07 +02:00
each artifact in artifacts
2021-12-19 18:17:51 +02:00
.col.s12
a(href=`/library/${artifact.id}`)
2021-12-19 18:17:51 +02:00
.card-panel
2022-01-09 01:44:02 +02:00
p.flow-text= artifact.name
2022-01-09 02:01:27 +02:00
2022-01-09 01:44:02 +02:00
if translationArtifactVersions.length > 0
2022-01-09 02:01:27 +02:00
.divider
h2 forks
2022-01-09 01:44:02 +02:00
each translationArtifactVersion in translationArtifactVersions
p.flow-text
2022-01-09 02:33:41 +02:00
a(href=`/translate/${translationArtifactVersion.id}`)= translationArtifactVersion.name
2022-01-09 02:01:27 +02:00