Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions airflow/www/templates/airflow/task.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ <h5>Dependencies Blocking Task From Getting Scheduled</h5>
</table>
<div>
{% for attr, value in special_attrs_rendered.items() %}
<h5>Attribute: {{ attr }}</h5>
{{ value }}
{% if value %}
<h5>Attribute: {{ attr }}</h5>
{{ value }}
{% endif %}
{% endfor %}
{% if ti_attrs is none %}
<h5>No Task Instance Available</h5>
Expand Down