silverstripe-framework/templates/ModelViewer.ss
Sam Minnee 9bf209b0ab Improved graphs displayed on dev/viewmodel
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@67432 467b73ca-7a2a-4603-9d3b-597d59a354a9
2011-02-02 14:26:45 +13: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>