{% 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 submitted code before approving this job.

{% if job_code %}

Submitted Code

{% for filename, code in job_code.items() %}
{{ filename }}
{{ code }}
{% endfor %} {% endif %} {% if job_url %} {% set button_text = "Review Job" %} {% set button_url = job_url %} {% include 'components/button.html' %} {% endif %}

If you have email approval switched on, reply to this email with:

approve — approve this job
auto-approve — approve and auto-approve future matching jobs
deny <reason> — reject this job

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

{% endblock %}