mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2026-08-25 15:46:54 +00:00
Build and push containers / metadata (push) Has been cancelled
Build and push containers / build-push-containers (push) Has been cancelled
Publish Python 🐍distribution 📦 to PyPI and TestPyPI / Build distribution 📦 (push) Has been cancelled
ChangeDetection.io App Test / lint-code (push) Has been cancelled
ChangeDetection.io App Test / lint-translations (push) Has been cancelled
ChangeDetection.io App Test / lint-template-i18n (push) Has been cancelled
Publish Python 🐍distribution 📦 to PyPI and TestPyPI / Test the built package works basically. (push) Has been cancelled
Publish Python 🐍distribution 📦 to PyPI and TestPyPI / Publish Python 🐍 distribution 📦 to PyPI (push) Has been cancelled
ChangeDetection.io App Test / test-application-3-10 (push) Has been cancelled
ChangeDetection.io App Test / test-application-3-11 (push) Has been cancelled
ChangeDetection.io App Test / test-application-3-12 (push) Has been cancelled
ChangeDetection.io App Test / test-application-3-13 (push) Has been cancelled
ChangeDetection.io App Test / test-application-3-14 (push) Has been cancelled
23 lines
638 B
HTML
23 lines
638 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<div class="edit-form">
|
|
<div class="inner">
|
|
|
|
<h4 style="margin-top: 0px;">{{ _('Notification debug log') }}</h4>
|
|
<span class="pure-form-message-inline">
|
|
{{ _('For security this log is emptied on restart.') }}
|
|
</span>
|
|
<div id="notification-error-log">
|
|
<ul style="font-size: 80%; margin:0px; padding: 0 0 0 7px">
|
|
{% for log in logs|reverse %}
|
|
<li>{{log}}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|