Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add agendapoint numbers to download table #759

Merged
merged 3 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/dirty-vans-boil.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'frontend-gelinkt-notuleren': patch
---

Add agendapoint numbers to download table
24 changes: 15 additions & 9 deletions app/templates/meetings/download/index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -120,22 +120,28 @@
<table.content as |c|>
<c.header>
<th>
<span
class='au-c-data-table__header-title au-c-data-table__header-title--sortable'
>{{t 'download.table.agendapoint-title'}}</span>
<span class='au-c-data-table__header-title'>{{t
'download.table.agendapoint-position'
}}</span>
</th>
<th>
<span
class='au-c-data-table__header-title au-c-data-table__header-title--sortable'
>{{t 'download.table.download-html'}}</span>
<span class='au-c-data-table__header-title'>{{t
'download.table.agendapoint-title'
}}</span>
</th>
<th>
<span
class='au-c-data-table__header-title au-c-data-table__header-title--sortable'
>{{t 'download.table.copy-options-header'}}</span>
<span class='au-c-data-table__header-title'>{{t
'download.table.download-html'
}}</span>
</th>
<th>
<span class='au-c-data-table__header-title'>{{t
'download.table.copy-options-header'
}}</span>
</th>
</c.header>
<c.body as |agendapoint|>
<td>{{inc agendapoint.position}}</td>
<td>{{agendapoint.titel}}</td>
<td class='au-u-flex'><DownloadMeetingPart
@documentType='agendapunt'
Expand Down
1 change: 1 addition & 0 deletions translations/en-us.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -794,6 +794,7 @@ download:
notulen-downloading: Downloading meeting
notulen-downloaded: Meeting downloaded
table:
agendapoint-position: Position
agendapoint-title: Agendapoint Title
download-html: Download HTML
no-data-message: No agendapoints found in meeting
Expand Down
1 change: 1 addition & 0 deletions translations/nl-BE.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -798,6 +798,7 @@ download:
notulen-downloading: Notulen aan het downloaden
notulen-downloaded: Notulen gedownload
table:
agendapoint-position: Positie
agendapoint-title: Titel agendapunt
download-html: Download HTML
no-data-message: Geen agendapunten gevonden in zitting
Expand Down