Abspeicherungsort: /fha/informatik/vorlesungen/vorl_view
<html metal:use-macro="here/fha_standard_page/macros/master">
<head>
<title tal:content="template/title">Vorlesungsansicht</title>
</head>
<body>
<span metal:fill-slot="fh_seite">
<img src="pictures/text/vorlesungen.gif"
width="310" height="21" alt="Vorlesungen" />
<br />
</span>
<span metal:fill-slot="inhalt" tal:define="tablewidth here/getTableWidth">
<table border="0" cellspacing="0" cellpadding="0" width="100%"
tal:attributes="width tablewidth"
tal:define="global pss modules/Products.PythonScripts.standard">
<tr>
<td width="170" align="right" valign="top">
<br />
<font size="+2">
<a href="../../professoren/"
tal:attributes="href here/getDozentLink"
tal:content="here/getDozentName">
Dozent
</a>
</font>
</td>
<td width="30"> </td>
<td width="360" align="left" valign="top">
<br />
<font size="+2"
tal:content="python:here.getVorlesungProperty('title')">
Vorlesungstitel
</font>
<br />
<span tal:replace="python:here.getVorlesungProperty('Semester')">
Semester
</span>,
<span tal:replace="python:here.getVorlesungProperty('Stunden')">
Stunden
</span>
</td>
</tr>
<tr>
<td width="170" align="right" valign="top">
<br />
<b>Leistungsnachweis</b>
</td>
<td width="30"> </td>
<td width="360" align="left" valign="top">
<br />
<span tal:replace="python:here.getVorlesungProperty('Leistungsnachweis')">
Leistungsnachweis
</span>
</td>
</tr>
<tr>
<td colspan="3">
<br />
<hr width="560" tal:attributes="width tablewidth" />
</td>
</tr>
<tr tal:define="my_ziel python:pss.structured_text(here.getVorlesungProperty('Vorlesungsziel'))"
tal:condition="my_ziel">
<td width="170" align="right" valign="top">
<br />
<b>Ziel der Veranstaltung</b>
</td>
<td width="30"> </td>
<td width="360" align="left" valign="top">
<br />
<span tal:replace="structure my_ziel">
Ziel der Vorlesung
</span>
</td>
</tr>
<tr tal:define="my_inhalt python:pss.structured_text(here.getVorlesungProperty('Inhalt'))"
tal:condition="my_inhalt">
<td width="170" align="right" valign="top">
<br />
<b>Inhaltsübersicht</b>
</td>
<td width="30"> </td>
<td width="360" align="left" valign="top">
<br />
<span tal:replace="structure my_inhalt">
Inhalt der Vorlesung
</span>
</td>
</tr>
<!-- Literaturhinweise -->
<span tal:define="items here/getLiteraturItems" tal:condition="items">
<tr>
<td colspan="3">
<hr width="100%" tal:attributes="width tablewidth" />
</td>
</tr>
<tr>
<td colspan="2"></td>
<td>
<br />
<b>Empfohlene Literatur:</b>
<br />
</td>
</tr>
<tr tal:repeat="item items">
<td align="right" valign="top">
<span tal:replace="python:item.getLiteraturProperty('Autoren')">
Autor
</span>
</td>
<td></td>
<td valign="top">
<span tal:replace="python:item.getLiteraturProperty('title')">
Titel
</span><br />
<span tal:replace="structure item/getLiteraturDescription">
weitere Daten
</span>
</td>
</tr>
</span>
</table>
</span>
</body>
</html>