2012-04-19 17:00:29 +02:00
|
|
|
<html>
|
|
|
|
<head>
|
2013-01-24 18:46:32 +01:00
|
|
|
<title>Plugin manager - Etherpad lite</title>
|
2013-02-09 17:47:52 +01:00
|
|
|
<meta name="viewport" content="width=device-width">
|
2012-04-28 22:00:15 +02:00
|
|
|
<link rel="stylesheet" href="../static/css/admin.css">
|
|
|
|
<script src="../static/js/jquery.js"></script>
|
|
|
|
<script src="../socket.io/socket.io.js"></script>
|
|
|
|
<script src="../static/js/admin/plugins.js"></script>
|
2012-04-19 17:00:29 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="wrapper">
|
|
|
|
|
|
|
|
<% if (errors.length) { %>
|
|
|
|
<div class="errors">
|
|
|
|
<% errors.forEach(function (item) { %>
|
|
|
|
<div class="error"><%= item.toString() %></div>
|
|
|
|
<% }) %>
|
|
|
|
</div>
|
|
|
|
<% } %>
|
|
|
|
|
2013-01-24 18:46:15 +01:00
|
|
|
<div class="menu">
|
2013-01-27 23:02:27 +01:00
|
|
|
<h1>Etherpad lite</h1>
|
|
|
|
<ul>
|
|
|
|
<% e.begin_block("adminMenu"); %>
|
|
|
|
<li><a href="plugins">Plugin manager</a> </li>
|
|
|
|
<li><a href="settings">Settings</a> </li>
|
|
|
|
<li><a href="plugins/info">Troubleshooting information</a> </li>
|
|
|
|
<% e.end_block(); %>
|
|
|
|
</ul>
|
2013-01-24 23:00:56 +01:00
|
|
|
<div id="progress"><img src="../static/img/loading.gif" alt=""/> <span class="message"></span></div>
|
2013-01-24 18:46:15 +01:00
|
|
|
</div>
|
2012-06-04 14:33:38 +02:00
|
|
|
|
2013-01-24 18:46:15 +01:00
|
|
|
<div class="innerwrapper">
|
2012-04-19 17:00:29 +02:00
|
|
|
<h2>Installed plugins</h2>
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Description</th>
|
2012-12-04 14:30:30 +01:00
|
|
|
<th>Version</th>
|
2012-04-19 17:00:29 +02:00
|
|
|
<td></td>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody class="template">
|
|
|
|
<tr id="installed-plugin-template">
|
|
|
|
<td class="name"></td>
|
|
|
|
<td class="description"></td>
|
2012-12-04 14:30:30 +01:00
|
|
|
<td class="version"></td>
|
2012-04-19 17:00:29 +02:00
|
|
|
<td class="actions">
|
|
|
|
<input type="button" value="Uninstall" class="do-uninstall">
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
<tbody id="installed-plugins">
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<div class="paged listing search-results">
|
2012-04-30 16:54:19 +02:00
|
|
|
<div class="separator"></div>
|
2013-01-24 22:39:52 +01:00
|
|
|
|
|
|
|
<h2>Available plugins</h2>
|
2012-04-19 17:00:29 +02:00
|
|
|
<form>
|
2013-01-24 22:39:52 +01:00
|
|
|
<input type="text" name="search" placeholder="Search for plugins to install" id="search-query">
|
2012-04-19 17:00:29 +02:00
|
|
|
</form>
|
2013-01-24 22:39:52 +01:00
|
|
|
|
2012-04-19 17:00:29 +02:00
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Description</th>
|
2012-12-04 14:30:30 +01:00
|
|
|
<th>Version</th>
|
2012-04-19 17:00:29 +02:00
|
|
|
<td></td>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody class="template">
|
|
|
|
<tr>
|
|
|
|
<td class="name"></td>
|
|
|
|
<td class="description"></td>
|
2012-12-04 14:30:30 +01:00
|
|
|
<td class="version"></td>
|
2012-04-19 17:00:29 +02:00
|
|
|
<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>
|
2013-01-24 18:46:15 +01:00
|
|
|
|
|
|
|
</div>
|
2012-04-19 17:00:29 +02:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|