Skip to content

Commit

Permalink
Add publication date to interviews
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanqui committed Aug 11, 2024
1 parent 4ecdbc0 commit ebd78d3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/lib/Interview.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@
<dd>{ data.interview.redaction.name }</dd>
{/if}

{#if data.interview.publication_date }
<dt>Datum uveřejnění</dt>
<dd>{ data.interview.publication_date.toLocaleDateString("cs-CZ") }</dd>
{/if}
</dl>

{#if data.narrator.bio }
Expand Down
1 change: 1 addition & 0 deletions src/routes/interviews/lubor-kopecky/interview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export const data: InterviewData = {
informed_agreement: true,
transcriber: {'name': "Alžběta Krejčí"},
redaction: RS,
publication_date: new Date("2024-01-20"),
// verifier: null
},
complete: true,
Expand Down
5 changes: 3 additions & 2 deletions src/routes/interviews/zdenek-vodak/interview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ export const data: InterviewData = {
"url": "/projects/videostop/"
},
informed_agreement: true,
// transcriber: "Rudolf Jan Suchý",
// verifier: null
transcriber: {name: "Andrea Tinková"},
verifier: RS,
publication_date: new Date("2024-08-11"),
},
complete: true,
tags: []
Expand Down

0 comments on commit ebd78d3

Please sign in to comment.