https://t.me/RX1948
Server : LiteSpeed
System : Linux srv104790275 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
User : dewac4139 ( 1077)
PHP Version : 8.0.30
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Directory :  /usr/local/CyberCP/websiteFunctions/templates/websiteFunctions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/local/CyberCP/websiteFunctions/templates/websiteFunctions/listWebsites.html
{% extends "baseTemplate/index.html" %}
{% load i18n %}
{% block title %}{% trans "Websites Hosted - CyberPanel" %}{% endblock %}
{% block content %}

    {% load static %}
    {% get_current_language as LANGUAGE_CODE %}
    <!-- Current language: {{ LANGUAGE_CODE }} -->

    <script>
        $(document).ready(function () {
            $('[data-toggle="tooltip"]').tooltip();
        });
    </script>

    <div ng-controller="listWebsites" class="container">

        <div id="page-title">
            <h2 id="domainNamePage">{% trans "List Websites" %}
                <a class="pull-right btn btn-primary" href="{% url "createWebsite" %}">{% trans "Create Website" %}</a>
            </h2>
            <img ng-hide="cyberPanelLoading" src="{% static 'images/loading.gif' %}">
            <p>{% trans "On this page you can launch, list, modify and delete websites from your server." %}</p>
        </div>

        <div class="col-sm-10" style="padding: 0px; box-shadow: 0px 0px 1px 0px #888888; margin-bottom: 2%">
            <input ng-change="searchWebsites()" placeholder="Search..." ng-model="patternAdded" name="dom" type="text"
                   class="form-control" required>
        </div>

        <div class="col-sm-2">
            <div class="form-group">
                <select ng-model="recordsToShow" ng-change="getFurtherWebsitesFromDB()"
                        class="form-control" id="example-select">
                    <option>10</option>
                    <option>50</option>
                    <option>100</option>
                </select>
            </div>
        </div>

        <div ng-repeat="web in WebSitesList track by $index" class="panel col-md-12"
             style="padding: 0px; box-shadow: 0px 0px 1px 0px #888888;">
            <div class="">
                <div class="table-responsive no-gutter text-nowrap" style="overflow-x: hidden;">

                    <div style="border-bottom: 1px solid #888888" class="col-md-12">
                        <div class="col-lg-10 content-box-header" style="text-transform: none;">
                            <a href="http://{$ web.domain $}" target="_blank" title="Visit Site">
                                <h2 style="display: inline; color: #414C59;" ng-bind="web.domain"></h2>
                            </a>
                            <a target="_self" href="/filemanager/{$ web.domain $}" title="Open File Manager"> --
                                {% trans "File Manager" %}</a>
                        </div>
                        <div class="col-md-2 content-box-header" style="text-transform: none;">
                            <a href="/websites/{$ web.domain $}" target="_self" title="Manage Website">
                                <i class="p fa fa-external-link btn-icon">&emsp;</i>
                                <span>{% trans "Manage" %}</span>
                            </a>
                        </div>
                    </div>

                    <div class="col-md-12">
                        <div class="col-md-3 content-box-header">
                            <i class="p fa fa-sticky-note btn-icon text-muted" data-toggle="tooltip"
                               data-placement="right" title="State">&emsp;</i>
                            <span ng-bind="web.state" style="text-transform: none"></span>
                        </div>
                        <div class="col-md-3 content-box-header">
                            <i class="p fa fa-map-marker btn-icon text-muted" data-toggle="tooltip"
                               data-placement="right" title="IP Address">&emsp;</i>
                            <span ng-bind="web.ipAddress"></span>
                        </div>
                        <div class="col-md-3 content-box-header">
                            <i class="p fa fa-lock btn-icon text-muted" data-toggle="tooltip" data-placement="right"
                               title="SSL">&emsp;</i>
                            <span><a ng-click="issueSSL(web.domain)" href=""
                                     style="text-transform: none">{% trans "Issue SSL" %}</a></span>
                        </div>
                        <div class="col-md-3 content-box-header">

                            <span ng-bind="web.phpVersion"></span>
                        </div>
                    </div>

                    <div class="col-md-12">
                        <div class="col-md-3 content-box-header">
                            <i class="p fa fa-hdd-o btn-icon text-muted" data-toggle="tooltip"
                               data-placement="right"
                               title="Disk Usage">&emsp;</i>
                            <span ng-bind="web.diskUsed" style="text-transform: none"></span>
                        </div>
                        <div class="col-md-3 content-box-header">
                            <i class="p fa fa-cubes btn-icon text-muted" data-toggle="tooltip"
                               data-placement="right"
                               title="Packages">&emsp;</i>
                            <span ng-bind="web.package" style="text-transform: none"></span>
                        </div>
                        <div class="col-md-3 content-box-header">
                            <i class="p fa fa-user btn-icon text-muted" data-toggle="tooltip" data-placement="right"
                               title="Owner">&emsp;</i>
                            <span ng-bind="web.admin" style="text-transform: none"></span>
                        </div>
                    </div>

                    <div id="listFail" class="alert alert-danger">
                        <p>{% trans "Cannot list websites. Error message:" %} {$ errorMessage $}</p>
                    </div>
                </div>
            </div>
        </div>
        <div style="margin-top: 2%" class="row">
            <div class="col-md-12">
                <div class="row">
                    <div class="col-md-9">
                    </div>
                    <div class="col-md-3">
                        <div class="form-group">
                            <select ng-model="currentPage" class="form-control"
                                    ng-change="getFurtherWebsitesFromDB()">
                                <option ng-repeat="page in pagination">{$ $index + 1 $}</option>
                            </select>
                        </div>
                    </div>
                </div> <!-- end row -->
            </div>
        </div>
    </div>

{% endblock %}

https://t.me/RX1948 - 2025