mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
Changed layout
This commit is contained in:
parent
49bea62fa7
commit
c2444a5288
@ -451,9 +451,10 @@
|
||||
"reports": {
|
||||
"empty": "Glückwunsch, es gibt nichts zu moderieren.",
|
||||
"name": "Meldungen",
|
||||
"type": "Typ",
|
||||
"content": "Inhalt",
|
||||
"author": "Autor",
|
||||
"typeRowHeadline": "Typ",
|
||||
"contentRowHeadline": "Inhalt",
|
||||
"authorRowHeadline": "Autor",
|
||||
"decisionRowHeadline": "Decision",
|
||||
"decided": "Entschieden",
|
||||
"noDecision": "Keine Entscheidung!",
|
||||
"enabledBy": "Aktiviert von",
|
||||
|
||||
@ -452,9 +452,10 @@
|
||||
"reports": {
|
||||
"empty": "Congratulations, nothing to moderate.",
|
||||
"name": "Reports",
|
||||
"type": "Type",
|
||||
"content": "Content",
|
||||
"author": "Author",
|
||||
"typeRowHeadline": "Type",
|
||||
"contentRowHeadline": "Content",
|
||||
"authorRowHeadline": "Author",
|
||||
"decisionRowHeadline": "Decision",
|
||||
"decided": "Decided",
|
||||
"noDecision": "No decision!",
|
||||
"enabledBy": "Enabled by",
|
||||
|
||||
@ -9,19 +9,27 @@
|
||||
>
|
||||
<colgroup><col width="" /></colgroup>
|
||||
<template v-for="content in reportedContentStructure">
|
||||
<thead :key="'thead-' + content.resource.id">
|
||||
<thead
|
||||
:class="[
|
||||
content.closed ? 'decision' : 'no-decision',
|
||||
'ds-table-col',
|
||||
'ds-table-head-col',
|
||||
'ds-table-head-col-border',
|
||||
]"
|
||||
:key="'thead-' + content.resource.id"
|
||||
>
|
||||
<tr valign="top">
|
||||
<th class="ds-table-col ds-table-head-col ds-table-head-col-border">
|
||||
{{ $t('moderation.reports.type') }}
|
||||
<th>
|
||||
{{ $t('moderation.reports.typeRowHeadline') }}
|
||||
</th>
|
||||
<th class="ds-table-col ds-table-head-col ds-table-head-col-border">
|
||||
{{ $t('moderation.reports.content') }}
|
||||
<th>
|
||||
{{ $t('moderation.reports.contentRowHeadline') }}
|
||||
</th>
|
||||
<th class="ds-table-col ds-table-head-col ds-table-head-col-border">
|
||||
{{ $t('moderation.reports.author') }}
|
||||
<th>
|
||||
{{ $t('moderation.reports.authorRowHeadline') }}
|
||||
</th>
|
||||
<th class="ds-table-col ds-table-head-col ds-table-head-col-border">
|
||||
{{ $t('moderation.reports.decision') }}
|
||||
<th>
|
||||
{{ $t('moderation.reports.decisionRowHeadline') }}
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user