Commit 8ed32ccf by Damien Moulard

Merge branch '4109-page-accueil-publique' into 'develop'

4109 page accueil publique

See merge request cooperatic/kohinos-tav!1
parents c1b51736 14da994f
...@@ -79,7 +79,10 @@ Création des tables et des contraintes : ...@@ -79,7 +79,10 @@ Création des tables et des contraintes :
Charger les fixtures standards : Charger les fixtures standards :
Pour une instance non TAV :
**$ php bin/console hautelook:fixtures:load --purge-with-truncate --env=pro** **$ php bin/console hautelook:fixtures:load --purge-with-truncate --env=pro**
Pour une instance TAV :
**$ php bin/console hautelook:fixtures:load --purge-with-truncate --env=tav**
Vous obtiendrez cette erreur ci dessous, c'est normal ! Vous obtiendrez cette erreur ci dessous, c'est normal !
...@@ -88,7 +91,10 @@ There is no main category related to context: rubrique ...@@ -88,7 +91,10 @@ There is no main category related to context: rubrique
**$ php bin/console sonata:media:fix-media-context** **$ php bin/console sonata:media:fix-media-context**
Pour une instance non TAV :
**$ php bin/console hautelook:fixtures:load --append --env=pro** **$ php bin/console hautelook:fixtures:load --append --env=pro**
Pour une instance TAV :
**$ php bin/console hautelook:fixtures:load --append --env=tav**
Supprimer le cache (si besoin) Supprimer le cache (si besoin)
......
...@@ -155,7 +155,7 @@ Prodigious\Sonata\MenuBundle\Entity\Menu: ...@@ -155,7 +155,7 @@ Prodigious\Sonata\MenuBundle\Entity\Menu:
Prodigious\Sonata\MenuBundle\Entity\MenuItem: Prodigious\Sonata\MenuBundle\Entity\MenuItem:
menuitem4: menuitem4:
menu: '@menu_main' menu: '@menu_main'
name: 'Professionnels' name: 'Professionels'
url: '#' url: '#'
position: 1 position: 1
target: 0 target: 0
......
...@@ -8,26 +8,34 @@ ...@@ -8,26 +8,34 @@
<i class="fas fa-check"> </i> {{ showMlcStats('user') }} {{ 'utilisateurs'|trans }}<br> <i class="fas fa-check"> </i> {{ showMlcStats('user') }} {{ 'utilisateurs'|trans }}<br>
</p> </p>
<p> <p>
<i class="fa fa-check"> </i> {{ showMlcStats('prestataire') }} <a href="{{ path('liste_prestataire') }}" title="{{ 'Nombre de prestataires'|trans }}">{{'prestataires'|trans}}</a> {{'et'|trans}} {{ showMlcStats('partenaire') }} <a href="{{ path('liste_partenaire') }}" title="{{'Nombre de partenaires'|trans}}">{{ 'partenaires'|trans }}</a> {% if tav_env %}
<i class="fa fa-check"> </i> {{ showMlcStats('prestataire') }} <a href="{{ path('liste_prestataire') }}" title="{{ 'Nombre de prestataires'|trans }}">{{'Points de vente'|trans}}</a>
{% else %}
<i class="fa fa-check"> </i> {{ showMlcStats('prestataire') }} <a href="{{ path('liste_prestataire') }}" title="{{ 'Nombre de prestataires'|trans }}">{{'prestataires'|trans}}</a> {{'et'|trans}} {{ showMlcStats('partenaire') }} <a href="{{ path('liste_partenaire') }}" title="{{'Nombre de partenaires'|trans}}">{{ 'partenaires'|trans }}</a>
{% endif %}
</p> </p>
{% if not tav_env %}
<p>
<i class="fa fa-check"> </i> {{ showMlcStats('groupe') }} {{ 'groupes locaux'|trans }}
</p>
{% endif %}
<p> <p>
<i class="fa fa-check"> </i> {{ showMlcStats('groupe') }} {{ 'groupes locaux'|trans }} <i class="fa fa-check"> </i> {{ showMlcStats('comptoir') }} <a href="{{ path('comptoirs_liste') }}" title="{{ 'Nombre de comptoirs'|trans }}">{% if tav_env %}{{ 'Comptoirs des habitants'|trans }}{% else %}{{ 'comptoirs'|trans }}{% endif %}</a>
</p>
<p>
<i class="fa fa-check"> </i> {{ showMlcStats('comptoir') }} <a href="{{ path('comptoirs_liste') }}" title="{{ 'Nombre de comptoirs'|trans }}">{{ 'comptoirs'|trans }}</a>
</p> </p>
{# <p> {# <p>
<i class="fa fa-exchange-alt"> </i> {{ getTotalMonnaieEmise() }} {{ KOH_MLC_NAME_SMALL|default('') }} émises <i class="fa fa-exchange-alt"> </i> {{ getTotalMonnaieEmise() }} {{ KOH_MLC_NAME_SMALL|default('') }} émises
</p> #} </p> #}
<p> {% if not tav_env %}
<i class="fa fa-exchange-alt"> </i> {{ getStatsMonnaie('mlc_nantie') }} {{ KOH_MLC_NAME_SMALL|default('') }} papier nantie <p>
</p> <i class="fa fa-exchange-alt"> </i> {{ getStatsMonnaie('mlc_nantie') }} {{ KOH_MLC_NAME_SMALL|default('') }} papier nantie
<p> </p>
<i class="fa fa-exchange-alt"> </i> {{ getStatsMonnaie('emlc') }} {{ KOH_MLC_NAME_SMALL|default('') }} numérique nantie <p>
</p> <i class="fa fa-exchange-alt"> </i> {{ getStatsMonnaie('emlc') }} {{ KOH_MLC_NAME_SMALL|default('') }} numérique nantie
<p> </p>
<i class="fa fa-exchange-alt"> </i> {{ (getStatsMonnaie('emlc') + getStatsMonnaie('mlc_nantie')) }} {{ KOH_MLC_NAME_SMALL|default('') }} en circulation <p>
</p> <i class="fa fa-exchange-alt"> </i> {{ (getStatsMonnaie('emlc') + getStatsMonnaie('mlc_nantie')) }} {{ KOH_MLC_NAME_SMALL|default('') }} en circulation
</p>
{% endif %}
{# @TODO (pas prioritaire) : Statistiques avancées : {# @TODO (pas prioritaire) : Statistiques avancées :
<p> <p>
<i class="fa fa-check"> </i> 350304 {{ KOH_MLC_NAME_SMALL|default('') }} reconverties <i class="fa fa-check"> </i> 350304 {{ KOH_MLC_NAME_SMALL|default('') }} reconverties
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment