Fixing include statements in ejs
parent
f06e958478
commit
739aa2ccd4
|
@ -21,7 +21,7 @@
|
|||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<% include navbar %>
|
||||
<%- include('navbar.ejs') -%>
|
||||
<div class="container">
|
||||
<h2>Cronjobs</h2>
|
||||
<div class="form-group">
|
||||
|
@ -99,7 +99,7 @@
|
|||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<% include popup.ejs %>
|
||||
<%- include('popup.ejs') -%>
|
||||
<script>
|
||||
jQuery(function($) {
|
||||
$('#main_table').DataTable({
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<% include navbar %>
|
||||
<%- include('navbar.ejs') -%>
|
||||
<div class="container">
|
||||
<h2><%= db %></h2>
|
||||
<table class="table">
|
||||
|
@ -60,6 +60,6 @@
|
|||
<a class="btn btn-primary" onclick="restore_backup('<%= db %>')"><span class="glyphicon glyphicon-floppy-save" aria-hidden="true"></span> Restore</a>
|
||||
<a class="btn btn-danger" onclick="delete_backup('<%= db %>')"><span class="glyphicon glyphicon-trash" aria-hidden="true"></span> Delete</a>
|
||||
</div>
|
||||
<% include popup.ejs %>
|
||||
<%- include('popup.ejs') -%>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue