{% extends "hobo/base.html" %} {% load i18n %} {% block breadcrumb %} {{ block.super }} Se {% endblock %} {% block appbar %}

{% trans 'Indexing Settings' %}

{% if mode == 'customize' %}{% trans "Change custom settings" %} {% else %}{% trans 'Use custom settings' %}{% endif %} {% trans 'Do not allow indexing' %} {% trans 'Allow indexing' %} {% endblock %} {% block content %}
{% blocktrans trimmed %} Robots are programs that automatically traverse web sites. Web site owners can use a robots.txt file to give instructions about their site. {% endblocktrans %}
{% if mode == 'allow' %}
{% trans "Web Robots are currently allowed." %}
{% endif %} {% if mode == 'disallow' %}
{% trans "Web Robots are currently not allowed." %}
{% endif %} {% if mode == 'customize' or mode == 'disallow' %}
{% trans "Contents of robots.txt file:" %}
{{ robots_txt }}
{% endif %} {% if mode == 'customize' or mode == 'allow' %}
{% csrf_token %} {{ form.as_p }}
{% endif %} {% endblock %}