31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
<%- include('./static/start.ejs',{name:"admin",async: true}) %>
|
|
<%- include('./header.ejs') %>
|
|
<style>
|
|
section{
|
|
width: 80vw;
|
|
margin: auto;
|
|
}
|
|
</style>
|
|
|
|
<!-- <h1 style="text-align: center;">привет админ</h1> <br> -->
|
|
<section>
|
|
<h1 style="text-align: center;">объект</h1>
|
|
<%- include('./admin/objects/object_groups.ejs') %>
|
|
<%- include('./admin/objects/object_creation.ejs') %>
|
|
<%- include('./admin/objects/object_edit.ejs') %>
|
|
</section>
|
|
|
|
<section>
|
|
<h1 style="text-align: center;">пользователь</h1>
|
|
<%- include('./admin/users/user_reg.ejs') %>
|
|
<%- include('./admin/users/user_edit.ejs') %>
|
|
</section>
|
|
|
|
<section style="display: flex; justify-content: space-between;">
|
|
<h1>логи</h1> <br>
|
|
<div class="logs_div" style="margin: auto 0px;display: flex;">
|
|
<button onclick="goto('/get_logs');">скачать логи</button>
|
|
</div>
|
|
</section>
|
|
|
|
<%- include('./static/end.ejs') %> |