{% extends "base.html" %} {% block title %}Admin - Algorithm Submissions{% endblock %} {% block content %}
Review and approve custom algorithm submissions
| Algorithm | Author | Submitted | GitHub PR | Actions |
|---|---|---|---|---|
|
{{ algo.algorithm_name }}
{{ algo.description[:50] }}{% if algo.description|length > 50 %}...{% endif %} |
{{ algo.user.username if algo.user else 'Unknown' }} | {{ algo.upload_date.strftime('%Y-%m-%d %H:%M') if algo.upload_date else 'N/A' }} | {% if algo.pr_url %} PR #{{ algo.github_pr_number }} {% else %} Local only {% endif %} |
No pending submissions!
| Algorithm | Author | Approved | Usage |
|---|---|---|---|
|
{{ algo.algorithm_name }}
{{ algo.description[:50] }}{% if algo.description|length > 50 %}...{% endif %} |
{{ algo.user.username if algo.user else 'Unknown' }} | {{ algo.reviewed_at.strftime('%Y-%m-%d') if algo.reviewed_at else 'N/A' }} | {{ algo.usage_count }} runs |
No approved algorithms yet.