{% extends 'base.html' %} {% block header %}
{% block title %}Job Details{% endblock %}
{% endblock %} {% block content %}
BACK
Attribute |
Value |
{% for att in attributes %}
{{att.get("text")}}
|
{{att.get("value")}} |
{% endfor %}
{% if has_errors %}
Error Info.
Attribute |
Value |
{% for att in errors %}
{{att.get("text")}}
|
{{att.get("value")}} |
{% endfor %}
{% endif %} {% if has_results %}
Results
Attribute |
Value |
{% for att in results %}
{{att.get("text")}}
|
{{att.get("value")}} |
{% endfor %}
{% endif %} {% if has_args %}
Args
Value |
{% for att in args %}
{{att}} |
{% endfor %}
{% endif %} {% if has_kwargs %}
Kwargs
Attribute |
Value |
{% for att in kwargs %}
{{att.get("text")}}
|
{{att.get("value")}} |
{% endfor %}
{% endif %} {% endblock %}