File: change_list.html

package info (click to toggle)
python-django-celery-beat 2.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,112 kB
  • sloc: python: 3,440; makefile: 319; sh: 22
file content (20 lines) | stat: -rw-r--r-- 725 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "admin/change_list.html" %}
{% load i18n %}

{% block breadcrumbs %}
  <div class="breadcrumbs">
    <a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
    &rsaquo; <a href="{% url 'admin:app_list' app_label=cl.opts.app_label %}">{{ cl.opts.app_config.verbose_name }}</a>
    &rsaquo; {{ cl.opts.verbose_name_plural|capfirst }}
  </div>
  {% if wrong_scheduler %}
    <ul class="messagelist">
      <li class="warning">
      Periodic tasks won't be dispatched unless you set the
      <code>CELERY_BEAT_SCHEDULER</code> setting to
      <code>djcelery.schedulers.DatabaseScheduler</code>,
      or specify it using the <code>-S</code> option to celerybeat
      </li>
    </ul>
  {% endif %}
{% endblock %}