Skip to content
Snippets Groups Projects
Commit b71e3d13 authored by Ron Lucke's avatar Ron Lucke Committed by David Siegfried
Browse files

fix #2096

Closes #2096

Merge request studip/studip!1381
parent 208b2f9f
No related branches found
No related tags found
1 merge request!4Draft: Icon creation
...@@ -25,19 +25,35 @@ ...@@ -25,19 +25,35 @@
:shape="status.shape" :shape="status.shape"
:role="status.role" :role="status.role"
:title="status.description" :title="status.description"
aria-hidden="true"
/> />
<span class="sr-only">{{ status.description }}</span>
</td> </td>
<td> <td>
{{ taskGroup && taskGroup.attributes.title }} {{ taskGroup && taskGroup.attributes.title }}
</td> </td>
<td> <td>
<span v-if="user"> <span v-if="user">
<studip-icon shape="person2" role="info" :title="$gettext('Teilnehmer/-in')" /> <studip-icon
shape="person2"
role="info"
aria-hidden="true"
:title="$gettext('Teilnehmende Person')"
/>
<span class="sr-only">{{ $gettext('Teilnehmende Person') }}</span>
{{ user.attributes['formatted-name'] }} {{ user.attributes['formatted-name'] }}
</span> </span>
<span v-if="group"> <span v-if="group">
<studip-icon shape="group2" role="info" :title="$gettext('Gruppe')" /> <studip-icon
shape="group2"
role="info"
aria-hidden="true"
:title="$gettext('Gruppe')"
/>
<span class="sr-only">{{ $gettext('Gruppe') }}</span>
{{ group.attributes['name'] }} {{ group.attributes['name'] }}
</span> </span>
</td> </td>
<td class="responsive-hidden"> <td class="responsive-hidden">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment