{% extends "release_dashboard/base.html" %}
{% load static %}
{% block title %}Build release{% endblock %}
{% block navlist %}
Release Dashboard
Build Release
{% endblock %}
{% block content %}
{{ config.release }}
Distribution |
tag |
branch |
Action |
{{ config.debian_release }} |
{{ config.tag }} |
{{ config.branch }} |
|
{% if build_releases %}
UUID |
Started at |
Last update at |
Action |
{% for br in build_releases %}
{{ br.uuid }} |
{{ br.start_date }} |
{{ br.last_update }} |
|
{% endfor %}
{% endif %}
Projects to build
{% for prj in config.projects %}
- {{ prj }}
{% endfor %}
{% endblock %}
{% block extrajs %}
{% endblock %}