equal
deleted
inserted
replaced
|
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" |
|
2 "http://www.w3.org/TR/html4/strict.dtd"> |
|
3 <html xmlns="http://www.w3.org/1999/xhtml" |
|
4 xmlns:xi="http://www.w3.org/2001/XInclude" |
|
5 xmlns:py="http://genshi.edgewall.org/"> |
|
6 <xi:include href="layout.tmpl" /> |
|
7 <head> |
|
8 <title>Datenbank</title> |
|
9 </head> |
|
10 <body> |
|
11 <title>Datenbank Schema</title> |
|
12 <div class="item"> |
|
13 <p> |
|
14 |
|
15 </p> |
|
16 <ol> |
|
17 <li value="1">1. <a href="#schema">Datenbankschema</a></li> |
|
18 <li value="3">3. |
|
19 <a href="#tables">Tabellen</a> |
|
20 <ol> |
|
21 <li py:for="(key,table) in enumerate(tables)" value="2.${key+1}">2.${key+1} <a href="#table-${table.tablename}">${table.title}</a></li> |
|
22 </ol> |
|
23 </li> |
|
24 </ol> |
|
25 </div> |
|
26 |
|
27 |
|
28 <div class="item" id="schema"> |
|
29 <h3>Schema</h3> |
|
30 <img src="images/db-schema.svg" /> |
|
31 <p>Dies ist eine Übersicht der benutzen Tabellen die Iro benötigt.</p> |
|
32 </div> |
|
33 <div class="item" id="tables"> |
|
34 <h3>Tabellen</h3> |
|
35 <div py:for="table in tables" class="item" id="table-${table.tablename}"> |
|
36 <h4>${table.title}</h4> |
|
37 <p py:content="Markup(table.description)"> |
|
38 Dieser Tabelle fehlt noch die Beschreibung. |
|
39 </p> |
|
40 </div> |
|
41 </div> |
|
42 </body> |
|
43 </html> |