{% extends "base.html" %} {% load i18n %} {% load humanize %} {% load bootstrap %} {% block title %}{% trans "Pizza Sheet" %}{% endblock %} {% block content %} {% if user.is_authenticated %}
{{ create_food_sheet|bootstrap_horizontal }}
{% csrf_token %}
{% endif %} {% for sheet in food_sheets %} {% endfor %}
{% trans "Estimated Order Time" %}{% trans "Pizza Service" %}{% trans "Status" %}
{{ sheet.estimated_order_time | naturaltime }} {{ sheet.food_service }} {% if sheet.closed %} Closed {% else %} Open {% endif %}
{% endblock %}