{% extends "admin/admin_base.html" %} {% load i18n static %} {% block admin_title %}{% trans "Dashboard" %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}
{% include "admin/partials/dashboard_charts.html" %}
{% trans "Pending Approvals" %}
{% for recipe in pending_recipes %} {% endfor %}
{% trans "Title" %} {% trans "Uploader" %} {% trans "Created At" %} {% trans "Actions" %}
{{ recipe.title }} {{ recipe.uploaded_by.username|default:"-" }} {{ recipe.created_at|date:"SHORT_DATETIME_FORMAT" }} check edit
{% trans "Recent Recipes" %}
{% for recipe in recent_recipes %} {% endfor %}
{% trans "Title" %} {% trans "Uploader" %} {% trans "Created At" %} {% trans "Actions" %}
{{ recipe.title }} {{ recipe.uploaded_by.username|default:"-" }} {{ recipe.created_at|date:"SHORT_DATETIME_FORMAT" }} edit
{% endblock %}