mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 13:35:42 +00:00
32 lines
446 B
HTML
32 lines
446 B
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
|
|
|
|
|
|
{% block 'head' %}
|
|
<link rel="stylesheet" href="{% static 'mesas/css/mesas.css' %}">
|
|
{% endblock %}
|
|
|
|
{% block 'title' %}
|
|
RRB&C - DashBoard
|
|
{% endblock %}
|
|
|
|
{% block 'body' %}
|
|
|
|
<body>
|
|
<div class="grid-container">
|
|
|
|
<h1>DashBoard Aqui</h1>
|
|
|
|
{% comment %} {% for mesa in mesas %}
|
|
|
|
<div class="card">{{mesa.name}}</div>
|
|
|
|
{% endfor %} {% endcomment %}
|
|
|
|
|
|
</div>
|
|
</body>
|
|
|
|
|
|
{% endblock %} |