-
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.
[Fiche structure] Répare l'affichage de la carte si Inbound désactivé (…
…#928) * Siae detail: show map in card when inbound deactivated * Simplify css
- Loading branch information
Showing
5 changed files
with
71 additions
and
143 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,87 @@ | ||
{% load array_choices_display %} | ||
|
||
<div class="row"> | ||
<!-- First column --> | ||
<div class="col-12 col-md-6"> | ||
<div class="row"> | ||
<div class="col-12"> | ||
<ul class="list-unstyled mb-0"> | ||
<li class="mb-2"> | ||
<i class="ri-calendar-2-fill"></i> | ||
<strong>Année de création :</strong> | ||
<span>{{ siae.year_constitution_display }}</span> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-12"> | ||
</li> | ||
<li class="mb-2"> | ||
<i class="ri-bill-line"></i> | ||
<strong>SIRET :</strong> | ||
<span>{{ siae.siret_display }}</span> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-12"> | ||
</li> | ||
<li class="mb-2"> | ||
<i class="ri-money-euro-circle-line"></i> | ||
<strong>Chiffre d'affaires :</strong> | ||
<span>{{ siae.ca_display }}</span> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-12 mt-2 mb-2"> | ||
{% include "siaes/_annuaire_entreprises_button.html" with siret=siae.siret %} | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-12 col-md-6"> | ||
<div class="row"> | ||
<div class="col-12"> | ||
</li> | ||
<li class="mb-2"> | ||
{% if siae.presta_type %} | ||
<i class="ri-briefcase-4-line"></i> | ||
<strong>{% array_choices_display siae 'presta_type' %}</strong> | ||
<i class="ri-briefcase-4-line"></i> | ||
<strong>{% array_choices_display siae 'presta_type' %}</strong> | ||
{% endif %} | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-12"> | ||
</li> | ||
<li class="mb-2"> | ||
<i class="ri-group-line"></i> | ||
<strong>Salariés permanents :</strong> | ||
<span>{{ siae.employees_permanent_count|default:"non disponible" }}</span> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-12"> | ||
</li> | ||
<li class="mb-2"> | ||
<i class="ri-user-add-line"></i> | ||
<strong>{{ siae.etp_count_label_display }} :</strong> | ||
<span>{{ siae.etp_count_display|floatformat:0|default:"non disponible" }}</span> | ||
</div> | ||
</li> | ||
{% if inbound_email_is_activated %} | ||
{% if siae.contact_website %} | ||
<li class="mb-2"> | ||
<i class="ri-window-2-line"></i> | ||
<a href="{{ siae.contact_website }}" id="company_website" target="_blank" rel="noopener">Site internet</a> | ||
</li> | ||
{% endif %} | ||
{% if siae.contact_social_website %} | ||
<li class="mb-2"> | ||
<i class="ri-earth-line"></i> | ||
<a href="{{ siae.contact_social_website }}" id="company_social_website" target="_blank" rel="noopener">Réseau social</a> | ||
</li> | ||
{% endif %} | ||
{% if siae.is_missing_contact %} | ||
<li class="mb-2"> | ||
<i class="ri-search-line"></i> | ||
<a href="https://www.google.fr/search?q={{ siae.name_display }}" id="company_google" target="_blank" rel="noopener">Google</a> | ||
</li> | ||
{% endif %} | ||
{% endif %} | ||
<li class="mb-2"> | ||
{% include "siaes/_annuaire_entreprises_button.html" with siret=siae.siret %} | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
<!-- Second column --> | ||
<div class="col-12 col-md-6"> | ||
<div class="map-holder mb-2"> | ||
<div id="map-siae" class="map-canvas"></div> | ||
</div> | ||
<ul class="list-unstyled m-0"> | ||
<li class="mb-2"> | ||
<i class="ri-map-2-line"></i> | ||
<strong>Situé à :</strong> | ||
<span>{{ siae.city }}</span> | ||
</li> | ||
<li class="mb-2"> | ||
<i class="ri-map-pin-line"></i> | ||
<strong>Adresse :</strong> | ||
<span>{{ siae.address }} {{ siae.post_code }} {{ siae.city }}</span> | ||
</li> | ||
<li class="mb-2"> | ||
<i class="ri-focus-2-line"></i> | ||
<strong>Intervient sur :</strong> | ||
<span>{{ siae.geo_range_pretty_display }}</span> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> |
This file was deleted.
Oops, something went wrong.