1
0
mirror of https://github.com/danog/schema.tl.git synced 2024-12-04 10:18:12 +01:00
schema.tl/views/types/show.html

18 lines
368 B
HTML
Raw Normal View History

2017-08-22 03:31:39 +02:00
<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>