{% extends 'base.html' %} {% block title %}HRMS - Restaurant Performance{% endblock %} {% block styles %} {% endblock %} {% block content %}
Add New Restaurant
{% for restaurant in restaurants %} {% endfor %}
Restaurant Tables Booked Orders Revenue Performance Actions
{{ restaurant.name[:1] }}
{{ restaurant.name }}
ID: {{ restaurant.id }}
Total: {{ restaurant.tables_booked }}
Occupancy: {{ restaurant.occupancy_rate }}%
Total: {{ restaurant.total_orders }}
Today: ${{ restaurant.daily_revenue }}
Monthly: ${{ restaurant.monthly_revenue }}
Growth: {{ restaurant.growth_rate }}%
Customers: {{ restaurant.customer_count }}
{% endblock %} {% block scripts %} {% endblock %}