pad.libre-service.eu-etherpad/src/templates/admin/settings.html

50 lines
1.8 KiB
HTML
Raw Normal View History

2013-02-09 20:57:41 +01:00
<!doctype html>
<html>
<head>
2013-02-09 20:42:47 +01:00
<title>Settings - Etherpad</title>
2013-02-09 17:47:52 +01:00
<meta name="viewport" content="width=device-width">
<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/minify.json.js"></script>
<script src="../static/js/admin/settings.js"></script>
2012-11-06 12:56:19 +01:00
<script src="../static/js/admin/jquery.autosize.js"></script>
</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-02-09 20:42:47 +01:00
<h1>Etherpad</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 18:46:15 +01:00
</div>
<div class="innerwrapper">
2013-02-09 21:22:23 +01:00
<h2>Current configuration</h2>
2013-01-24 18:46:15 +01:00
<textarea class="settings"></textarea>
<input type="button" class="settingsButton" id="saveSettings" value="Save Settings">
<input type="button" class="settingsButton" id="restartEtherpad" value="Restart Etherpad">
<div id="response"></div>
2013-02-09 21:22:23 +01:00
<div class="separator"></div>
<a href='https://github.com/ether/etherpad-lite/wiki/Example-Production-Settings.JSON'>Example production settings template</a>
<a href='https://github.com/ether/etherpad-lite/wiki/Example-Development-Settings.JSON'>Example development settings template</a>
2013-01-24 18:46:15 +01:00
</div>
</div>
</body>
</html>