combo/combo/apps/search/templates/combo/manager/search-cell-form.html

17 lines
381 B
HTML

{% extends "combo/cell_form.html" %}
{% load i18n %}
{% block cell-form %}
{% if cell.has_text_search_service and cell.missing_index %}
<div class="infonotice">
<p>
{% blocktrans %}
Content indexing has been scheduled and should happen within an hour; search
results will then be available.
{% endblocktrans %}
</p>
</div>
{% endif %}
{{ block.super }}
{% endblock %}