Skip to content
Snippets Groups Projects
Commit 8e0a7e34 authored by Thomas Hackl's avatar Thomas Hackl Committed by David Siegfried
Browse files

Resolve "Darstellung der Lehrenden im Vorlesungsverzeichnis"

Closes #2876

Merge request studip/studip!1944
parent cfc8ecf8
No related branches found
No related tags found
No related merge requests found
...@@ -7,15 +7,15 @@ ...@@ -7,15 +7,15 @@
<studip-icon :shape="details.admissionstate.icon" :role="details.admissionstate.role" <studip-icon :shape="details.admissionstate.icon" :role="details.admissionstate.role"
:title="details.admissionstate.info"></studip-icon> :title="details.admissionstate.info"></studip-icon>
</div> </div>
<ul class="course-lecturers"> <div class="course-lecturers">
<li v-for="(lecturer, index) in details.lecturers" :key="index"> <span v-for="(lecturer, index) in details.lecturers" :key="index">
<a :href="profileUrl(lecturer.username)" <a :href="profileUrl(lecturer.username)"
:title="$gettextInterpolate($gettext('Zum Profil von %{ user }'), :title="$gettextInterpolate($gettext('Zum Profil von %{ user }'),
{ user: lecturer.name })"> { user: lecturer.name })">
{{ lecturer.name }} {{ lecturer.name }}
</a> </a><template v-if="details.lecturers.length > 1 && index < details.lecturers.length - 1">, </template>
</li> </span>
</ul> </div>
<MountingPortal :mountTo="'#course-dates-' + course" :append="true"> <MountingPortal :mountTo="'#course-dates-' + course" :append="true">
<span v-html="details.dates"></span> <span v-html="details.dates"></span>
</MountingPortal> </MountingPortal>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment