20 lines
641 B
HTML
20 lines
641 B
HTML
|
{% extends "base.html" %}
|
||
|
{% block title %} LORDCHANNEL - LISTA TITOLI {% endblock title %}
|
||
|
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<h1 class="text-center">Boxtitoli : </h1>
|
||
|
<div class="container">
|
||
|
<div class="text-center"><a href="{% url 'crea_titolo' %}">CREA UN NUOVO TITOLO</a></div>
|
||
|
{% for lista_titoli in titoli %}
|
||
|
<div class="text-center">
|
||
|
<a href="{{ lista_titoli.get_absolute_url }}"><h1>{{ lista_titoli.titolo }}</h1></a>
|
||
|
<!-- {{ lista_titoli.slug_id }} -->
|
||
|
<img src="{{ lista_titoli.foto }}" class="img-fluid" alt="{{ lista_titoli.titolo }}">
|
||
|
</div>
|
||
|
<hr>
|
||
|
</div>
|
||
|
|
||
|
{% endfor %}
|
||
|
{% endblock content %}
|