78 lines
2.7 KiB
Plaintext
78 lines
2.7 KiB
Plaintext
<div .profile>
|
|
|
|
<div .scrolltable>
|
|
<table .table.table--striped.table--hover.table--vertical>
|
|
<tr.table__row>
|
|
<th .table__th> _{MsgName}
|
|
<td .table__td> #{display userDisplayName}
|
|
<tr.table__row>
|
|
<th .table__th> _{MsgMatrikelNr}
|
|
<td .table__td> #{display userMatrikelnummer}
|
|
<tr.table__row>
|
|
<th .table__th> _{MsgEMail}
|
|
<td .table__td> #{display userEmail}
|
|
<tr.table__row>
|
|
<th .table__th> _{MsgIdent}
|
|
<td .table__td> #{display userIdent}
|
|
<tr.table__row>
|
|
<th .table__th> _{MsgPlugin}
|
|
<td .table__td> #{display userPlugin}
|
|
$if not $ null admin_rights
|
|
<tr.table__row>
|
|
<th .table__th> Administrator
|
|
<td .table__td>
|
|
<ul>
|
|
$forall institute <- admin_rights
|
|
<li>#{display institute}
|
|
$if not $ null lecturer_rights
|
|
<tr.table__row>
|
|
<th .table__th> Lehrberechtigt
|
|
<td .table__td>
|
|
<ul>
|
|
$forall institute <- lecturer_rights
|
|
<li>#{display institute}
|
|
$if not $ null lecture_owner
|
|
<tr.table__row>
|
|
<th .table__th> Eigene Kurse
|
|
<td .table__td>
|
|
<ul>
|
|
$forall (E.Value csh, E.Value tid) <- lecture_owner
|
|
<li>
|
|
<a href=@{CourseR tid csh CShowR}>#{display tid} - #{csh}
|
|
$if not $ null lecture_corrector
|
|
<tr.table__row>
|
|
<th .table__th> Korrektor
|
|
<td .table__td>
|
|
<ul>
|
|
$forall (E.Value csh, E.Value tid) <- lecture_corrector
|
|
<li>
|
|
<a href=@{CourseR tid csh CShowR}>#{display tid} - #{csh}
|
|
$if not $ null studies
|
|
<tr.table__row>
|
|
<th .table__th> Studiengänge
|
|
<td .table__td>
|
|
<table .table .table-striped .table-hover>
|
|
<tr.table__row>
|
|
<th .table__th> Abschluss
|
|
<th .table__th> Studiengang
|
|
<th .table__th> Studienart
|
|
<th .table__th> Semester
|
|
|
|
$forall (degree,field,fieldtype,semester) <- studies
|
|
<tr.table__row>
|
|
<td .table__td> #{display degree}
|
|
<td .table__td> #{display field}
|
|
<td .table__td> #{display fieldtype}
|
|
<td .table__td> #{display semester}
|
|
$if not $ null participant
|
|
<tr.table__row>
|
|
<th .table__th> Teilnehmer
|
|
<td .table__td>
|
|
<ul>
|
|
$forall (E.Value csh, E.Value tid, regSince) <- participant
|
|
<li>
|
|
<a href=@{CourseR tid csh CShowR}>#{display tid} - #{csh}
|
|
seit #{display regSince}
|
|
|
|
^{settingsForm}
|