Server IP : 85.214.239.14 / Your IP : 3.137.200.56 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 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, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /srv/modoboa/env/lib64/python3.5/site-packages/modoboa/core/templates/core/ |
Upload File : |
{% load i18n core_tags lib_tags %} <h2>{% trans "Information" %} <small>{% trans "Various information about Modoboa" %}</small></h2><hr> {% if update_avail %} <div class="alert alert-block alert-success"> <h4>{% trans "One or more updates are available!" %}</h4> <p>{% trans "Check the following list to find the component(s) that can be updated." %}</p> </div> {% endif %} <h3>{% trans "Applications" %}</h3> <table id="extensions" class="table table-hover"> <thead> <tr> <th>{% trans "Name" %}</th> <th>{% trans "Installed version" %}</th> <th>{% trans "Last version" %}</th> <th>{% trans "Description" %}</th> </tr> </thead> <tbody> {% for extension in extensions %} <tr{% if extension.update %} class="success"{% endif %}> <td>{{ extension.label }}</td> <td>{{ extension.version }}</td> <td>{% if extension.update %}<strong>{% if extension.changelog_url %}<a href="{{ extension.changelog_url }}">{{ extension.last_version }}</a>{% else %}{{ extension.last_version }}{% endif %}</strong>{% else %}{{ extension.last_version }}{% endif %}</td> <td>{{ extension.description }}</td> </tr> {% endfor %} </tbody> </table> <h3>{% trans "Active users" %}</h3> <table class="table table-hover"> <thead> <tr> <th>{% trans "Name" %}</th> <th>{% trans "Role" %}</th> <th>{% trans "Last login" %}</th> </tr> </thead> <tbody> {% connected_users as users %}{% for u in users %} <tr> <td>{{ u.username }}</td> <td>{{ u.role }}</td> <td>{{ u.last_login }}</td> </tr> {% endfor %} </tbody> </table>