{% extends "mini_buildd/base.html" %} {% load static %} {% load mini_buildd_tags %} {% block title %}mini-buildd{% endblock %} {% block page_title %}{% mbd_title %}{% endblock %} {% block page_sub_title %} {% if not daemon.is_busy %} {% if daemon.is_running %} {% mbd_api "stop" output="referer" %} {% else %} {% mbd_api "start" output="referer" %} {% endif %} {% endif %} {% if daemon.is_busy %}Busy...{% elif daemon.is_running %}Running{% else %}Stopped{% endif %}: {{ daemon.model }}
{% endblock %} {% block content %}
{% if not daemon.is_running %} {% mbd_api "autosetup" %} {% endif %}
Events ({{ daemon.events|length }}) {% include "includes/mbd_events.html" with events=daemon.events %}
Crontab ({{ daemon.crontab.jobs|length }}) {% include "includes/mbd_crontab.html" with crontab=daemon.crontab %}
Toolbox
{% mbd_api "getkey" %} {% mbd_api "getdputconf" %} {% mbd_api "logcat" %} {% mbd_api "portext" %} {% mbd_api "keyringpackages" %} {% mbd_api "testpackages" %}
Repositories ({{ repositories|length }})
    {% for r in repositories %}
  • {{ r }} (Overview) {% if r.external_home_url %} (ExtHome) {% endif %}
  • {% empty %}
  • No repositories.
  • {% endfor %}
Chroots ({{ chroots|length }})
    {% for c in chroots %}
  • {{ c }}
  • {% empty %}
  • No chroots.
  • {% endfor %}
Remotes ({{ remotes|length }})
    {% for r in remotes %}
  • {{ r }} (Visit)
  • {% empty %}
  • No remotes.
  • {% endfor %}
{% if daemon.packages.items %}

Packaging... Packaging ({{ daemon.packages|length }})

{% include "includes/mbd_packaging.html" with packages=daemon.packages.values %}
{% endif %} {% if daemon.builds.items %}

Building... Building ({{ daemon.build_queue }})

{% include "includes/mbd_building.html" with builds=daemon.builds.values %}
{% endif %}
{% endblock %}