2012-03-15 18:25:06 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Plugin manager</title>
|
2012-04-05 19:04:17 +02:00
|
|
|
<link href="../../static/css/admin.css" rel="stylesheet" type="text/css" />
|
2012-03-15 21:07:48 +01:00
|
|
|
<script src="../../static/js/jquery.js"></script>
|
|
|
|
<script src="../../socket.io/socket.io.js"></script>
|
2012-04-11 18:07:19 +02:00
|
|
|
<script src="../../static/js/admin/plugins.js"></script>
|
2012-03-15 18:25:06 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2012-04-05 19:22:53 +02:00
|
|
|
<div id="wrapper">
|
|
|
|
|
|
|
|
<% if (errors.length) { %>
|
|
|
|
<div class="errors">
|
|
|
|
<% errors.forEach(function (item) { %>
|
|
|
|
<div class="error"><%= item.toString() %></div>
|
|
|
|
<% }) %>
|
|
|
|
</div>
|
|
|
|
<% } %>
|
|
|
|
|
|
|
|
|
|
|
|
<h1>Installed plugins</h1>
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Description</th>
|
|
|
|
<td></td>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody class="template">
|
|
|
|
<tr id="installed-plugin-template">
|
|
|
|
<td class="name"></td>
|
|
|
|
<td class="description"></td>
|
|
|
|
<td class="actions">
|
|
|
|
<input type="button" value="Uninstall" class="do-uninstall">
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
<tbody id="installed-plugins">
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2012-04-17 22:18:43 +02:00
|
|
|
<div class="paged listing search-results">
|
|
|
|
<h1>Search for plugins to install</h1>
|
|
|
|
<form>
|
|
|
|
<input type="text" name="search" value="" id="search-query">
|
|
|
|
<input type="button" value="Search" id="do-search">
|
|
|
|
</form>
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Description</th>
|
|
|
|
<td></td>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody class="template">
|
|
|
|
<tr>
|
|
|
|
<td class="name"></td>
|
|
|
|
<td class="description"></td>
|
|
|
|
<td class="actions">
|
|
|
|
<input type="button" value="Install" class="do-install">
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
<tbody class="results">
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<input type="button" value="<<" class="do-prev-page">
|
|
|
|
<span class="offset"></span>..<span class="limit"></span> of <span class="total"></span>.
|
|
|
|
<input type="button" value=">>" class="do-next-page">
|
|
|
|
</div>
|
|
|
|
|
2012-04-05 19:22:53 +02:00
|
|
|
|
|
|
|
<div id="progress" class="dialog">
|
|
|
|
<h1 class="title">
|
|
|
|
Please wait: <span class="message"></span>
|
2012-03-15 21:07:48 +01:00
|
|
|
<input type="button" class="close" value="Close">
|
2012-04-05 19:22:53 +02:00
|
|
|
</h1>
|
|
|
|
<div class="history"></div>
|
|
|
|
</div>
|
2012-03-15 21:07:48 +01:00
|
|
|
</div>
|
2012-03-15 18:25:06 +01:00
|
|
|
</body>
|
|
|
|
</html>
|