templates/common/modal/package_other.html.twig line 1

Open in your IDE?
  1. {% if is_granted('ROLE_SOCIETY') and not is_granted('ROLE_ADMIN')  and (app.user.society.package == null or app.user.society.package == 'month' or app.user.society.packageExpireAt < "now"|date("Y-m-d H:i:s")) %}
  2.     <style>
  3.         {% if app.user.society.siren is not empty and app.user.society.adress is not empty  %}
  4.         .dashboard-content-container {
  5.             z-index: 0 !important;
  6.         }
  7.         {% endif %}
  8.     </style>
  9.     <div id="package-other" class="zoom-anim-dialog mfp-hide dialog-with-tabs custom-dialog">
  10.         <div class="sign-in-form">
  11.             <div class="popup-tabs-container">
  12.                 <!-- Tab -->
  13.                 <div class="popup-tab-content" id="tab1">
  14.                     <!-- Welcome Text -->
  15.                     <div class="welcome-text">
  16.                         <h3>Package</h3>
  17.                         <p class="margin-top-15">
  18.                             Vous devez avoir un accès supérieur.
  19.                         </p>
  20.                         <a class="button" href="{{ path('active_package') }}">
  21.                             Voir les accès
  22.                         </a>
  23.                     </div>
  24.                 </div>
  25.             </div>
  26.         </div>
  27.     </div>
  28. {% endif %}