{% extends "header.html" %}
{% import 'elements.html' as elm %}
{% block content %}
All commits
revision |
time |
author |
task |
tag |
{% for c in commits %}
{% if 'tag' not in c %}
{% set cl = 'gray' %}
{% if c['test_passed'] == True %}
{% set cl = 'green' %}
{% elif c['test_passed'] == False %}
{% set cl = 'red' %}
{% endif %}
{{ c['commit'] }}
|
{{ c['time'] }} |
{{ c['author'] }}
|
{{ c['task_id'] }}
|
{{ c['contains_in'] }} |
{% endif %}
{% endfor %}
Stable
tag |
time |
{% for c in commits %}
{% if 'tag' in c %}
{% set cl = 'green' %}
{% if c['test_passed'] == False %}
{% set cl = 'red' %}
{% endif %}
{{ c['tag'] }} |
{{ c['time'] }} | {{ c['author'] }} |
{% endif %}
{% endfor %}
{{ elm.footer() }}
{% endblock %}