{% extends "base.html" %} {% block title %}New Job Request - {{ job_name }}{% endblock %} {% block content %}

New Job Request

You have a new job submission in SyftBox that requires your review.

{% set info_items = [ {'label': 'Job Name', 'value': job_name}, {'label': 'From', 'value': submitter}, {'label': 'Submitted', 'value': timestamp | datetime if timestamp else 'Just now'}, {'label': 'Status', 'value': 'Pending Review', 'badge': 'pending'} ] %} {% include 'components/info_box.html' %}

Please review the code and data access requests before approving this job.

{% if job_url %} {% set button_text = "Review Job" %} {% set button_url = job_url %} {% include 'components/button.html' %} {% endif %}

Security Reminder: Only approve jobs from trusted collaborators. Review the submitted code carefully before execution.

{% endblock %}