{% extends "base/header_content_footer.html" %} {% load crispy_forms_tags %} {% block title %} {% trans "Meal Type List" %} {% endblock %} {% block content %}
| # | {% trans "Meal Type Name" %} | {% trans "Abbreviation" %} | {% trans "Created at" %} | {% trans "Is Disabled" %} | # |
|---|---|---|---|---|---|
| {{ forloop.counter }} | {{ meal_type.name }} | {{ meal_type.abbreviation }} | {{ meal_type.created_at|date:"Y-m-d" }} | {% if meal_type.is_disabled %} {% trans "Yes" %} {% endif %} | {% trans "Edit" %} | {% trans "Delete" %} |
| {% trans "No meal types yet." %} | |||||