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