{% extends 'base.html' %} {% block content %}
{% if memcached_status_display == 'NOT INSTALLED' %}

{{_('Memcached is not currently installed.')}}

{{_('To install Memcached click on the button bellow.')}}

{% elif memcached_status_display == 'ON' %}
{{ _('Connection Info') }}

{{ _('Active') }}


127.0.0.1

{{ _('*or localhost') }}

11211

{{ _('*Access to the service is NOT available from other servers.') }}
{{ _('Memcached Memory Allocation') }}

{{ _('You can allocate RAM to Memcached service.') }}

{{ _('Current Memory limit for Memcached service') }}

{% if maxmemory_value == 0 %} {% else %} {{ maxmemory_value | int }} MB {% endif %}

{{ maxmemory_value | int }} MB
{% endif %} {% if memcached_status_display == 'ON' %} {% elif memcached_status_display == 'NOT INSTALLED' %} {% elif memcached_status_display == 'OFF' %}

{{ _('Memcached is currently disabled.') }}

{{ _('To enable Memcached SERVER click on the button bellow.') }}

{% else %}

{{ _('Memcached service status is unknown.') }}

{{ _('Unable to determinate current Memcached service status, try Start&Stop actions.') }}
{{ _('If the issue persists please contact support.') }}

{% endif %}
{% endblock %}