40 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
{% extends "base.html" %}
 | 
						|
{% load static %}
 | 
						|
 | 
						|
{% block css %}
 | 
						|
<link rel="stylesheet" href="{% static 'css/style.css' %}">
 | 
						|
<link rel="stylesheet" href="{% static 'css/navbar_style.css' %}">
 | 
						|
<link href="https://fonts.googleapis.com/css2?family=Faster+One&display=swap" rel="stylesheet">  
 | 
						|
{% endblock css %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
{% if cocktail %}
 | 
						|
<h1 class="text-center">In totale nel nostro Salone Bar abbiamo trovato {{ cocktail.count }} cocktails {% if  cocktail.count == 1 %} che corrisponde {% else %} che corrispondono {% endif %} alla tua ricerca <i class="fas fa-cocktail"></i> </h1>
 | 
						|
{% for cocktails in cocktail %}
 | 
						|
  <!-- {{ cocktail.ingredienti.all }}
 | 
						|
  {{ cocktail.nome_cocktail }} -->
 | 
						|
  {% if forloop.first %} <div class="row">  {% endif %}
 | 
						|
    <div class="col-lg-4 my-3">
 | 
						|
        <a href="{{ cocktails.get_absolute_url }}">
 | 
						|
      <div class="card h-100 my-1 border border-info">
 | 
						|
          <div class="card-img-top"><img src="{{ cocktails.immagine_cocktail.url }}" class="img-fluid" alt="{{ cocktails.nome_cocktail }}"></div>
 | 
						|
          <div class="text_on_image">{{ cocktails.nome_cocktail }}</div>
 | 
						|
          <div class="card-body py-0">
 | 
						|
        <p class="mt-2 mb-0 py-3 text-center">{{ cocktails.ingredienti.all|join:"," }}</p> 
 | 
						|
        </div>
 | 
						|
      </div>
 | 
						|
    </a>
 | 
						|
    </div>
 | 
						|
    {% if forloop.counter|divisibleby:"3" or forloop.last %}
 | 
						|
</div>
 | 
						|
  {% endif %}
 | 
						|
  {% if forloop.counter|divisibleby:"3" and not forloop.last %}
 | 
						|
  <div class="row"> 
 | 
						|
  {% endif %}
 | 
						|
  {% endfor %}
 | 
						|
  <hr>
 | 
						|
  {% endif %}
 | 
						|
  {% if ingrediente %}
 | 
						|
  <h1>HELLO</h1>
 | 
						|
  {% endif %}
 | 
						|
{% endblock content %} |