4 changed files with 48 additions and 40 deletions
@ -1,13 +1,25 @@ |
|||||||
<script type="text/html" id="project-documentation-widget-template"> |
<script type="text/html" id="project-documentation-widget-template"> |
||||||
<%= name %> |
<h3><%= name %></h3> |
||||||
<ul> |
<table> |
||||||
<% _.each(releases, function(release) { %> |
<thead> |
||||||
<li> |
<tr> |
||||||
<%= release.fullName %> |
<th>Release</th> |
||||||
<i class="<%= release.statusIconClass %>"></i> |
<th>Documentation</th> |
||||||
<a href='<%= release.refDocUrl %>'>Reference</a> |
</tr> |
||||||
<a href='<%= release.apiDocUrl %>'>API</a> |
</thead> |
||||||
</li> |
<tbody> |
||||||
<% }); %> |
<% _.each(releases, function(release) { %> |
||||||
</ul> |
<tr> |
||||||
|
<td> |
||||||
|
<%= release.fullName %> |
||||||
|
<i class="<%= release.statusIconClass() %>"></i> |
||||||
|
</td> |
||||||
|
<td> |
||||||
|
<a href='<%= release.refDocUrl %>'>Reference</a> |
||||||
|
<a href='<%= release.apiDocUrl %>'>API</a> |
||||||
|
</td> |
||||||
|
</tr> |
||||||
|
<% }); %> |
||||||
|
</tbody> |
||||||
|
</table> |
||||||
</script> |
</script> |
||||||
|
|||||||
Loading…
Reference in new issue