{% extends "base.html" %} {% block title %}Profile - {{ current_user.username }}{% endblock %} {% block content %}
{{ current_user.email }}
{% if current_user.is_admin %} Admin {% endif %}| Algorithm | Status | Submitted | Actions |
|---|---|---|---|
| {{ sub.algorithm_name }} | {% if sub.status == 'pending' %} Pending Review {% elif sub.status == 'approved' %} Approved {% elif sub.status == 'rejected' %} Rejected {% endif %} | {{ sub.upload_date.strftime('%Y-%m-%d') if sub.upload_date else 'N/A' }} | {% if sub.pr_url %} View PR {% endif %} |
No algorithm submissions yet.
Submit Algorithm| Algorithm | Function | Best Fitness | Time | Date |
|---|---|---|---|---|
| {{ result.algorithm_name }} | {{ result.objective_function }} | {{ "%.6f"|format(result.best_fitness) }} | {{ "%.2f"|format(result.execution_time) }}s | {{ result.created_at.strftime('%Y-%m-%d %H:%M') if result.created_at else 'N/A' }} |
No optimization runs yet.
Run Optimization