You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
745 B
25 lines
745 B
<script type="text/html" id="project-documentation-widget-template"> |
|
<h3><%= name %></h3> |
|
<table> |
|
<thead> |
|
<tr> |
|
<th>Release</th> |
|
<th>Documentation</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
<% _.each(releases, function(release) { %> |
|
<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>
|
|
|