{% extends "web/_base.html" %} {% load debusine %} {% block title %}Welcome to debusine-server!{% endblock %} {% block content %}
Debusine manages scheduling and distribution of Debian-related tasks to a distributed network of machines.
It is under active development by Freexian with the intention of providing easy access to a range of packaging tools and distribution-wide experiments.
{% if user.is_authenticated %}You are authenticated as {{ user.username }}.
{% endif %}If it's your first time exploring Debusine, you can start from What is Debusine for an introduction, or browse the index to the whole Debusine documentation. You may want to set up debusine-client if you have not already done so.
Work in Debusine happens in Workspaces, which own artifacts and work requests and provide access control.
This is a list of available workspaces you can access:
{% include "web/_workspace-list.html" with workspace_list=workspace_list user=user only %} {% if user.is_authenticated %}Work Requests are how tasks are scheduled to be processed by workers. Here you can see a list of your current and past work requests processed by Debusine.
{% if work_request_list %} {% include "web/_work_request-list.html" with work_request_list=work_request_list user=user only %} {% else %}No work requests created by {{ user.username }}.
{% endif %} {% endif %}