templates/RecruitmentCampaign/_campaign_subscription_btn.html.twig line 1

Open in your IDE?
  1. {% if not role.provider %}
  2.     {% if campaign is campaignSubscribable %}
  3.         <a class='nowrap {{desktop('bg-warning white top-8-in bottom-10-in hz-30-in radius-5')}} {{mobile(''~(full is defined ? 'white semibold bg-warning vt-10-in' : 'bg-gray border border-1x border-warning warning vt-6-in' )~ ' p-alt w100 hz-10-in radius-3 text-center')}}'
  4.            href='{{ path('campaign-request-provider', {uuid: campaign.uuid}) }}'>
  5.             {{ "subscribe to campaign"|trans }}
  6.         </a>
  7.     {% elseif campaign is infuture %}
  8.         <a title="Démarre le {{ campaign.start ? (campaign.start.date|date) }}" class='disable nowrap {{desktop('white semibold bg-warning warning top-8-in bottom-10-in hz-30-in radius-5')}} {{mobile(''~(full is defined ? 'bg-warning vt-10-in' : 'bg-gray border border-1x border-warning warning vt-6-in' )~ ' p-alt w100 hz-10-in radius-3 text-center')}}'>
  9.             {{ "subscribe to campaign"|trans }}
  10.         </a>
  11.     {% else %}
  12.         <a title="Expiré le {{ campaign.end ? (campaign.end.date|date) }}" class='nowrap disable {{desktop('white semibold bg-warning warning top-8-in bottom-10-in hz-30-in radius-5')}} {{mobile(''~(full is defined ? 'bg-warning vt-10-in' : 'bg-gray border border-1x border-warning warning vt-6-in' )~ ' p-alt w100 hz-10-in radius-3 text-center')}}'>
  13.             {{ "subscribe to campaign"|trans }}
  14.         </a>
  15.     {% endif %}
  16. {% endif %}