Infinity Forum
Christian Engineering Solutions (CES) is a Not for Profit Organization specializing in collaborative solutions development for the Church. In the Spirit of Jesus Christ, we are to spread the gospel throughout the Earth, taking care to be good examples of Christ Jesus by serving others. CES is designed to help the Church meet these goals in the most rigorous manner possible.
Our Technology is scripture based in its goals and foundations. Open-Source and Free, one may use our services to both learn and solve problems with the goals of helping others and growing closer to God.
<!--
Admin Panel Features:
Reviewing Claims
Approving Daemons
Budget Page
Scheduled Maintenance
Downloading Backups
-->
<%- include('html_head') %>
<link rel="stylesheet" type="text/css" href="/css/new.css">
<link rel="stylesheet" type="text/css" href="/css/mobile.css">
</head>
<%- include('header') %>
<%- include('header2', {
page: 'admin'
}) %>
<%-include('menu')%>
<%-include('sidebar')%>
<%if(!ISMOBILE){%>
<%- include('member_box') %>
<%}%>
<input type="hidden" value="false", id="is_profile"/>
<div id="page_title_container">
<%if(passage.parent != null){%>
<div data-url="/passage/<%=encodeURIComponent(passage.parent.title)%>/<%=passage.parent._id%>"id="parent_title"><%=passage.parent.title%></div>
<%}%>
<div id="page_title"><%= "Admin Panel: " + decodeURIComponent(passageTitle) || "Admin Panel"%></div>
<div style="margin-left:97px;margin-bottom:10px;">
<a href="/dbbackup">Download Database Backup</a>
</div>
<div style="margin-left:97px;margin-bottom:10px;">
<a href="/uploadsbackup">Download Uploads Backup</a>
</div>
</div>
<%if(passages){%>
<input id="search"placeholder="Search Solutions..." type="" name="" autocomplete="off">
<%}else if (passage){%>
<input id="search"placeholder="Search Solutions..." type="hidden" name="" autocomplete="off">
<input id="search_passage"placeholder="Search <%=passage.title%>..." type="" name="" autocomplete="off">
<%} %>
<%if((user && passage.id == 'root') || (user && (passage.public || passageUsers.includes(user._id.toString())))){%>
<%if(passage.id == 'root'){%>
<button title="Add Passage"id="add_passage_button">+</button>
<%}%>
<%}%>
<br>
<div id="passage_wrapper">
<!-- Show passage list or search list -->
<%if(passages){%>
<%- include('passages') %>
<%}else if (passage){%>
<!-- Just show one passage -->
<%- include('passage', {passage: passage, sub: sub, subPassages: subPassages}) %>
<%} %>
</div>
<div id="passage_form_wrapper"></div>
<%if((user && passage.id == 'root') || (user && (passage.public || passageUsers.includes(user._id.toString())))){%>
<%if(passage.id != 'root'){%>
<button title="Add Passage"id="add_passage_button">+</button>
<%}%>
<%}%>
<br>
</div>
<%if(passages){%>
<div class="passage"id="view_more">View More</div>
<%}else if (passage && passage.public == true){%>
<div class="passage"id="view_more">View More</div>
<%} %>
<%- include('footer') %>