18 lines
369 B
HTML
18 lines
369 B
HTML
{% extends "layouts/base.html" %}
|
|
|
|
{% block subtitle %}
|
|
<h1 class="text-4xl">Daftar Ruang</h1>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
{% for entry in ruangs %}
|
|
<div class="px-4 py-4 flex flex-row justify-start items-center hover:bg-blue-300">
|
|
{{ entry.NamaRuang }}
|
|
<br/>
|
|
di {{ entry.Rumah.NamaRumah }}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|