1
0
mirror of https://github.com/danog/schema.tl.git synced 2024-12-04 02:08:01 +01:00
schema.tl/views/types/show.html
2017-08-21 18:31:39 -07:00

18 lines
368 B
HTML

<div class="content-inner">
<h1 class="title title-type">{{ type.name }}</h1>
<h2>Constructors</h2>
<table>
<tr>
<th>
Predicate
</th>
</tr>
<tr ng-repeat="constructor in type.constrs">
<td>
<a href="#!/constructor/{{ constructor.predicate }}">{{ constructor.predicate }}</a>
</td>
</tr>
</table>
</div>