{% extends "recipe_hub/base_recipe_hub.html" %} {% block recipe_hub_content %}

Recipe Moderation

{{ stats.total }} total · {{ stats.flagged }} flagged · {{ stats.quarantined }} quarantined
{# Filters #}
{{ total }} recipes
{# Recipe table #}
Recipes
{% for r in recipes %} {% else %} {% endfor %}
Title Cuisine Ings Source Status Actions
{{ r.title }} {% if r.is_flagged %}Flagged{% endif %} {% if r.is_quarantined %}Quarantined{% endif %} {{ r.cuisine or '—' }} {{ r.recipe_details|length if r.recipe_details is defined else '—' }} {{ r.source or '—' }} {{ r.created_at.strftime('%m/%d/%y') if r.created_at else '—' }} {% if r.pdf_filename %} {% endif %}
No recipes found.
{% if pages > 1 %} {% endif %} {% endblock %}