mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-14 19:21:46 +03:00
47 lines
1.6 KiB
HTML
47 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>pgweb</title>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta http-equiv="Content-Language" content="en">
|
|
<link rel="stylesheet" href="/static/css/bootstrap.css"></link>
|
|
<link rel="stylesheet" href="/static/css/app.css"></link>
|
|
<script type="text/javascript" src="/static/js/jquery.js"></script>
|
|
<script type="text/javascript" src="/static/js/ace.js"></script>
|
|
<script type="text/javascript" src="/static/js/ace-pgsql.js"></script>
|
|
<script type="text/javascript" src="/static/js/app.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="nav">
|
|
<ul>
|
|
<li id="table_content">Content</li>
|
|
<li id="table_structure">Structure</li>
|
|
<li id="table_indexes">Indexes</li>
|
|
<li id="table_query" class="selected">SQL Query</li>
|
|
<li id="table_history">History</li>
|
|
</ul>
|
|
</div>
|
|
<div id="sidebar">
|
|
<div class="wrapper"><ul id="tables"></ul></div>
|
|
</div>
|
|
<div id="body">
|
|
<div id="input">
|
|
<div class="wrapper">
|
|
<div id="custom_query"></div>
|
|
<div class="actions">
|
|
<input type="button" id="run" value="Run Query" class="btn btn-sm btn-primary" />
|
|
<input type="button" id="explain" value="Explain Query" class="btn btn-sm btn-default" />
|
|
|
|
<div id="query_progress">Please wait, query is executing...</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="output">
|
|
<div class="wrapper">
|
|
<table id="results" class="table table-striped"></table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |