nenuscanner/templates/index.html

19 lines
469 B
HTML

{% extends "base.html" %}
{% block content %}
<section class="section">
<div class="container">
<h1 class="title">Bienvenue sur NenuScanner</h1>
{% if objects %}
<ul>
{% for object in objects %}
<li>{{ object.name }}</li>
{% endfor %}
</ul>
{% else %}
<p>Il n'y a aucun object pour le moment...</p>
{% endif %}
</div>
</section>
{% endblock content %}