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

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

{% endblock %} {% block content %} BACK {% for att in attributes %} {% endfor %}
Attribute Value
{{att.get("text")}} {% if att.get("text") == "Depends On" and att.get("value") %} {% for val in att.get("value") %} {{val}}   {% endfor %} {% else %} {{att.get("value")}} {% endif %}
{% 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 %}