diff --git a/templates/import_campus.html b/templates/import_campus.html index 59ba43b802cbca588bb1211f1a17c15f3287467c..74de6f088815fcce9dc93a5c4f4bec5a313ca5f9 100644 --- a/templates/import_campus.html +++ b/templates/import_campus.html @@ -8,7 +8,7 @@ </div> <div class="panel-body"> <div> - <p>Es folgen viele Pärchen an Campus-URL und Veranstaltungstyp Pärchen. Die Campus URL bekommt man aus dem Campus-System (<a href="https://www.campus.rwth-aachen.de/rwth/all/groups.asp">hier</a>). Der Veranstaltungstyp ist z.B. "Vorlesung" oder "Übung" oder "Praktikum". + <p>Es folgen viele Pärchen an Campus-URL und Veranstaltungstyp Pärchen. Die Campus URL bekommt man aus dem Campus-System (<a href="https://www.campus.rwth-aachen.de/rwth/all/groups.asp" target="_blank">hier</a>). Der Veranstaltungstyp ist z.B. "Vorlesung" oder "Übung" oder "Praktikum". </p> <form method="post"> <ul class="list-group row" style="margin-left: 0px; margin-right: 0px;"> diff --git a/templates/lecture.html b/templates/lecture.html index 76a45805df7b9a03e33484fc28fb6cc5deb45473..ec272032efb77fd381ea69b6a6f954e3a58404c7 100644 --- a/templates/lecture.html +++ b/templates/lecture.html @@ -42,9 +42,9 @@ <th></th> </tr> {% for c in chapters|sort(attribute='time') %} - <tr onclick="videojs('videoplayer').currentTime({{c['time']}})"> + <tr> <td>{{ loop.index }}</td> - <td>{{ vtttime(c['time']) }}</td> + <td><a href="javascript:videojs('videoplayer').currentTime({{c['time']}})">{{ vtttime(c['time']) }}</a></td> <td>{{ moderator_editor(['chapters',c.id,'text'],c['text']) }}</td> <td>{{ moderator_checkbox(['chapters',c.id,'visible'], c.visible) }}</td> <td>{{ moderator_delete(['chapters',c.id,'deleted']) }}</td>