-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ajout des études de cas à la page d'accueil + fix recettes jetables(#427
) * add images * integrate new section in homepage * update dependencies * update poetry dependencies * try fix * add link to studies cases
- Loading branch information
1 parent
285a67e
commit d132f16
Showing
15 changed files
with
217 additions
and
448 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 72 additions & 0 deletions
72
lemarche/templates/pages/home_sections/_tenders_studies_case.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
{% load static bootstrap4 wagtailcore_tags %} | ||
|
||
<section class="s-hp-studies-cases-tenders py-5"> | ||
<div class="s-hp-studies-cases-tenders__container container"> | ||
<div class="s-hp-studies-cases__row row"> | ||
<div class="col-sm-6 col-md-3 my-4 my-sm-auto"> | ||
<h2>100% des besoins ont reçu des réponses en 24h</h2> | ||
<p>Gagnez du temps en utilisant le marché.</p> | ||
{% if user.is_authenticated %} | ||
<a href="{% url 'tenders:create' %}" id="home-studie-cases" class="btn btn-sm btn-primary btn-ico d-block d-md-inline-block mb-2"> | ||
<i class="ri-mail-send-line"></i> | ||
<span>Publier un besoin d'achat</span> | ||
</a> | ||
{% else %} | ||
<a href="#" id="home-studie-cases-modal-btn" class="btn btn-sm btn-primary btn-ico" data-toggle="modal" data-target="#login_or_signup_modal" data-next-params="{% url 'tenders:create' %}"> | ||
<i class="ri-mail-send-line"></i> | ||
<span>Publier un besoin d'achat</span> | ||
</a> | ||
{% endif %} | ||
</div> | ||
<div class="col-sm-6 col-md-3 my-4 my-sm-auto"> | ||
<div class="card"> | ||
<img src="{% static 'images/siemens_logo.jpg' %}" class="card-img-top" alt="Logo de Siemens"> | ||
<div class="card-body"> | ||
<a href="{% slugurl "siemens-besoin-en-développement-dapplications-it" %}"> | ||
<h5 class="card-title">Besoin en développement d’applications IT</h5> | ||
</a> | ||
</div> | ||
<div class="card-footer"> | ||
<p class="display-1 mb-1"> | ||
<i class="ri-arrow-right-line ri-xl"></i> 48 | ||
</p> | ||
<p class="display-4">structures répondantes</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-sm-6 col-md-3 my-4 my-md-auto"> | ||
<div class="card"> | ||
<img src="{% static 'images/bouygues_construction_logo.jpg' %}" class="card-img-top" alt="Logo de Bouygues construction"> | ||
<div class="card-body"> | ||
<a href="{% slugurl "bouygues-construction-recherche-dune-entreprise-de-nettoyage" %}"> | ||
<h5 class="card-title">Recherche d’une entreprise de nettoyage</h5> | ||
</a> | ||
</div> | ||
<div class="card-footer"> | ||
<p class="display-1 mb-1"> | ||
<i class="ri-arrow-right-line ri-xl"></i> 68 | ||
</p> | ||
<p class="display-4">structures répondantes</p> | ||
</div> | ||
</div> | ||
</a> | ||
</div> | ||
<div class="col-sm-6 col-md-3 my-4 my-md-auto"> | ||
<div class="card"> | ||
<img src="{% static 'images/ministere_agriculture_logo.jpg' %}" class="card-img-top" alt="Logo du ministère de l'agriculture et de l'alimentation"> | ||
<div class="card-body"> | ||
<a href="{% slugurl "ministère-de-lagriculture-besoin-en-prestations-de-cocktails-et-de-buffet" %}"> | ||
<h5 class="card-title">Besoin en prestations de cocktails et de buffets</h5> | ||
</a> | ||
</div> | ||
<div class="card-footer"> | ||
<p class="display-1 mb-1"> | ||
<i class="ri-arrow-right-line ri-xl"></i> 18 | ||
</p> | ||
<p class="display-4">structures répondantes</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.