{% extends "base.html" %} {% block title %}New Job Request - {{ job_name }}{% endblock %} {% block content %}
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 %}
{{ code }}
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 %}