{% extends "layout.html" %}
{% block title %}Release{% endblock %}
{% block content %}
{% if message is not none %}
{{ message }}
{% endif %}
{% if release is not none %}
{% for key in release.keys() %}
{% if key not in ['author', 'target_url', 'message', 'target', 'target_type', 'decoding_failures'] and release[key] is not none %}
{{ key }}
{{ release[key] }}
{% endif %}
{% endfor %}
{% if release['author'] is not none %}
author
{{ release['author']['name'] }} - {{ release['author']['email'] }}
{% if 'decoding_failures' in release['author'] %}(some decoding errors){% endif %}