2008-12-04 03:44:11 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
2008-12-04 05:12:37 +01:00
|
|
|
<% base_tag %>
|
2008-12-04 03:44:11 +01:00
|
|
|
<title>Data Model</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<h1>Data Model for your project</h1>
|
|
|
|
|
|
|
|
<% control Modules %>
|
|
|
|
<h1>Module $Name</h1>
|
2008-12-04 04:49:40 +01:00
|
|
|
|
|
|
|
<img src="$Link/graph" />
|
2008-12-04 03:44:11 +01:00
|
|
|
|
|
|
|
<% control Models %>
|
|
|
|
<h2>$Name <% if ParentModel %> (subclass of $ParentModel)<% end_if %></h2>
|
|
|
|
<h4>Fields</h4>
|
|
|
|
<ul>
|
|
|
|
<% control Fields %>
|
|
|
|
<li>$Name - $Type</li>
|
|
|
|
<% end_control %>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<h4>Relations</h4>
|
|
|
|
<ul>
|
|
|
|
<% control Relations %>
|
|
|
|
<li>$Name $RelationType $RelatedClass</li>
|
|
|
|
<% end_control %>
|
|
|
|
</ul>
|
|
|
|
<% end_control %>
|
|
|
|
<% end_control %>
|
|
|
|
</body>
|
|
|
|
</html>
|
2008-12-04 05:12:37 +01:00
|
|
|
|