remove the time from the cron job list

This commit is contained in:
Andreas Zweili 2017-12-27 16:36:56 +01:00
parent 52c42bc24f
commit ac069aa51f
2 changed files with 2 additions and 4 deletions

View File

@ -689,8 +689,7 @@ there are any cron jobs.
<p>
<ul>
{% for cronjob in cronjob_list %}
<li><a href="{% url 'cronjob' cronjob.id %}">{{ cronjob.name }}
{{ cronjob.time }} {{ cronjob.weekday }} {{ cronjob.month }}</a></li>
<li><a href="{% url 'cronjob' cronjob.id %}">{{ cronjob.name }}</a></li>
{% endfor %}
</ul>
</p>

View File

@ -23,8 +23,7 @@
<p>
<ul>
{% for cronjob in cronjob_list %}
<li><a href="{% url 'cronjob' cronjob.id %}">{{ cronjob.name }}
{{ cronjob.time }} {{ cronjob.weekday }} {{ cronjob.month }}</a></li>
<li><a href="{% url 'cronjob' cronjob.id %}">{{ cronjob.name }}</a></li>
{% endfor %}
</ul>
</p>