mirror of https://gitee.com/bigwinds/arangodb
48 lines
1.6 KiB
Plaintext
48 lines
1.6 KiB
Plaintext
<script id="applicationDetailView.ejs" type="text/template">
|
|
<div class="applicationDetailView">
|
|
<div class="headerBar">
|
|
<div class="breadcrumb">
|
|
<a class="activeBread" href="#applications">Applications</a>
|
|
>
|
|
<a class="disabledBread">
|
|
<%= attributes.name %>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<section>
|
|
<div class="header">
|
|
<div class="header_left">
|
|
<img src="foxxes/thumbnail/<%=attributes.app %>" class="icon" alt="Icon for App">
|
|
<input type="button" class="open button-success" disabled="true" value="Open">
|
|
<input type="button" class="delete button-danger" value="Delete">
|
|
</div>
|
|
<div class="header_right">
|
|
<h3>
|
|
<%= attributes.name %>
|
|
<span class="license"><%= attributes.license %></span>
|
|
<span class="version"><%= attributes.app.split(':').pop() %></span>
|
|
</h3>
|
|
<p class="description"><%= attributes.description %></p>
|
|
</div>
|
|
</div>
|
|
<div class="swagger">
|
|
<iframe src="http://localhost:8529/_db/_system/_admin/aardvark/standalone.html#application/documentation/<%= attributes._key %>" name="Documentation"></iframe>
|
|
</div>
|
|
</section>
|
|
<aside>
|
|
<dl>
|
|
<dt>Author</dt>
|
|
<dd><%= attributes.author %></dd>
|
|
<dt>Contributors</dt>
|
|
<dd>
|
|
<ul>
|
|
<% _.each(attributes.contributors, function (contributor) { %>
|
|
<li><a href="mailto:<%= contributor.email %>"><%= contributor.name %></a></li>
|
|
<% }); %>
|
|
</ul>
|
|
</dd>
|
|
</dl>
|
|
</aside>
|
|
</div>
|
|
</script>
|