{% extends 'base.html' %} {% block header %}

{% block title %}Job Details{% endblock %}

{% endblock %} {% block content %} BACK {% for att in attributes %} {% endfor %}
Attribute Value
{{att.get("text")}} {{att.get("value")}}
{% if has_errors %}

Error Info.

{% for att in errors %} {% endfor %}
Attribute Value
{{att.get("text")}} {{att.get("value")}}
{% endif %} {% if has_results %}

Results

{% for att in results %} {% endfor %}
Attribute Value
{{att.get("text")}} {{att.get("value")}}
{% endif %} {% if has_args %}

Args

{% for att in args %} {% endfor %}
Value
{{att}}
{% endif %} {% if has_kwargs %}

Kwargs

{% for att in kwargs %} {% endfor %}
Attribute Value
{{att.get("text")}} {{att.get("value")}}
{% endif %} {% endblock %}