1
0
Fork 0

Added a template for the fishbowl list of apps

This commit is contained in:
Michael Hackstein 2014-12-13 20:04:01 +01:00
parent 5e6e8caeaa
commit 7f74892480
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<script id="applicationListView.ejs" type="text/template">
<tr class="foxx-store-row">
<td class="foxx-store-main">
<div class="foxx-name"><%=name%></div>
<div class="foxx-author"><%=author%></div>
<div class="foxx-description"><%=description%></div>
</td>
<td class="foxx-store-version">
<div class="foxx-version"><%=latestVersion%></div>
</td>
<td class="foxx-store-install">
<button class="button-success install-app" appId="<%=name %>" appVersion="<%=latestVersion %>">Install</button>
</td>
</tr>
</script>