silverstripe-framework/templates/ModelViewer.ss
Ingo Schommer d26f08b481 MINOR merged branches/2.3 into trunk
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@67465 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-12-04 22:38:32 +00:00

35 lines
710 B
Scheme

<html>
<head>
<% base_tag %>
<title>Data Model</title>
</head>
<body>
<h1>Data Model for your project</h1>
<% control Modules %>
<h1>Module $Name</h1>
<img src="$Link/graph" />
<% 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>