{% extends "base-site.html" %} {% block title %} Mission {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% block content %}
[DATA PACKAGE]
Name
Author
Index
Is Private
Size (KB)
Submitted
{% for dict_items in json_data %} {% if loop.index == 1 %} {% endif %}
{{dict_items['Name']}}
{{dict_items['SubmissionUser'] | replace("[", "") | replace("(", "") | replace("'", "") | replace("'", "") | replace(")", "") | replace("]", "") | replace(",", "") }}
{{dict_items['PrimaryKey']}}
{{dict_items['Size'] /1000}}
{{dict_items['SubmissionDateTime']}}
{% endfor %}


[MISSION]
Name
Description
Keywords
Creator
Groups
Created
{% if mission_json_data | length == 0 %}
No Records Found
{% endif %} {% for items in mission_json_data %}
{{items['name']}}
{{items['description']}}
{{items['keywords']}}
{{items['creatorUid']}}
{{items['groups']}}
{{items['createTime']}}
{% endfor %}


[EXCHECK]
{% for items in excheck_json_data %} {% if loop.index == 1 %}
Name
Submitter
Type
Size
Submitted
 
{% endif %} {% if items['data'].get('keywords') is not none %}
{{items['data']['keywords'][0]}}
{{items['creatorUid'] | replace("[", "") | replace("(", "") | replace("'", "") | replace("'", "") | replace(")", "") | replace("]", "") | replace(",", "")}}
{{items['data']['filename']}}
{{items['data']['size']}}
{{items['data']['submissionTime']}}
 
{% endif %} {% endfor %}


[OUTGOING FEDERATIONS]
Name
Address
Port
Fallback
Status
Rec. Interval
Max Retries
Last Error
{% if outgoing_federation_json_data |count == 0 %}
No Records Found
{% endif %} {% for items in outgoing_federation_json_data %}
{{items['name']}}
{{items['address']}}
{{items['port']}}
{{items['fallBack']}}
{{items['status']}}
{{items['reconnectInterval']}}
{{items['maxRetries']}}
{{items['lastError']}}
{% endfor %}
{{ msg if msg is defined else ' ' }}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}