Server IP : 85.214.239.14 / Your IP : 3.145.92.213 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/lib/python3.5/site-packages/modoboa/templates/common/ |
Upload File : |
{% load lib_tags %} <!-- Brand and toggle get grouped for better mobile display --> <div class="row"> {% block before_menubar %}{% endblock %} <div class="btn-toolbar {{ extraclasses }} {% block menubar_classes %}col-xs-12{% endblock %}"> {% for entry in entries %} <div class="btn-group"> {% if entry.menu %} {% if entry.url %} <a name="{{ entry.name }}" class="btn {{ entry.class }}" href="{{ entry.url }}" title="{{ entry.title }}"> {% if entry.img %}<span class="{{ entry.img}}"></span> {% endif %}{{ entry.label }}</a> <button type="button" class="btn {{ entry.class }} dropdown-toggle" data-toggle="dropdown"> <span class="caret"></span> <span class="sr-only">Toggle Dropdown</span> </button> {% else %} <button type="button" title="{{ entry.title }}" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> {% if entry.img %}<span class="{{ entry.img}}"></span> {% endif %}{{ entry.label }} <span class="caret"></span> </button> {% endif %} <ul class="dropdown-menu"> {% for sentry in entry.menu %} {% if sentry.divider %} <li class="divider"></li> {% elif sentry.header %} <li class="dropdown-header">{{ sentry.label }}</li> {% else %} <li>{% render_link sentry %}</li> {% endif %} {% endfor %} </ul> {% else %} {% render_link entry "btn" %} {% endif %} </div> {% endfor %} {% block extra_buttons %}{% endblock %} </div> {% block after_menubar %}{% endblock %} </div>