etherpad-lite/src/templates/admin/plugins-info.html

51 lines
2.2 KiB
HTML
Raw Normal View History

2012-06-05 13:32:33 +02:00
<%
var plugins = require("ep_etherpad-lite/static/js/pluginfw/plugins");
%>
<!doctype html>
2012-06-05 13:32:33 +02:00
<html>
<head>
<title data-l10n-id="admin_plugins_info.page-title">Plugin information - Etherpad</title>
2013-02-09 17:47:52 +01:00
<meta name="viewport" content="width=device-width">
2012-06-05 13:32:33 +02:00
<link rel="stylesheet" href="../../static/css/admin.css">
<link rel="localizations" type="application/l10n+json" href="../../locales.json" />
<script src="../../static/js/html10n.js"></script>
<script src="../../static/js/l10n.js"></script>
2012-06-05 13:32:33 +02:00
</head>
<body>
<div id="wrapper">
2013-01-24 18:46:15 +01:00
<div class="menu">
<h1><a href="../../">Etherpad</a></h1>
<ul>
<% e.begin_block("adminMenu"); %>
<li><a href="../plugins" data-l10n-id="admin_plugins">Plugin manager</a></li>
<li><a href="../settings" data-l10n-id="admin_settings">Settings</a></li>
<li><a href="../plugins/info" data-l10n-id="admin_plugins_info">Troubleshooting information</a></li>
<% e.end_block(); %>
</ul>
2013-01-24 18:46:15 +01:00
</div>
2012-06-05 13:32:33 +02:00
2013-01-24 18:46:15 +01:00
<div class="innerwrapper">
<h2 data-l10n-id="admin_plugins_info.version">Etherpad version</h2>
<p><span data-l10n-id="admin_plugins_info.version_number">Version number</span>: <%= epVersion %></p>
<p><span data-l10n-id="admin_plugins_info.version_latest">Latest available version</span>: <%= latestVersion %></p>
<p>Git sha: <a href='https://github.com/ether/etherpad-lite/commit/<%= gitCommit %>'><%= gitCommit %></a></p>
2012-06-05 13:32:33 +02:00
<h2 data-l10n-id="admin_plugins_info.plugins">Installed plugins</h2>
<pre><%- plugins.formatPlugins().replace(/, /g,"\n") %></pre>
2012-06-05 13:32:33 +02:00
<h2 data-l10n-id="admin_plugins_info.parts">Installed parts</h2>
2013-01-24 18:46:15 +01:00
<pre><%= plugins.formatParts() %></pre>
2012-06-05 13:32:33 +02:00
<h2 data-l10n-id="admin_plugins_info.hooks">Installed hooks</h2>
<h3 data-l10n-id="admin_plugins_info.hooks_server">Server-side hooks</h3>
2013-01-24 18:46:15 +01:00
<div><%- plugins.formatHooks() %></div>
<h3 data-l10n-id="admin_plugins_info.hooks_client">Client-side hooks</h3>
2013-01-24 18:46:15 +01:00
<div><%- plugins.formatHooks("client_hooks") %></div>
2013-01-24 18:46:15 +01:00
</div>
2012-06-05 13:32:33 +02:00
</div>
2016-09-20 09:06:07 +02:00
<div style="display:none"><a href="/javascript" data-jslicense="1">JavaScript license information</a></div>
2012-06-05 13:32:33 +02:00
</body>
</html>