{% if not role.provider %}
{% if campaign is campaignSubscribable %}
<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')}}'
href='{{ path('campaign-request-provider', {uuid: campaign.uuid}) }}'>
{{ "subscribe to campaign"|trans }}
</a>
{% elseif campaign is infuture %}
<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')}}'>
{{ "subscribe to campaign"|trans }}
</a>
{% else %}
<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')}}'>
{{ "subscribe to campaign"|trans }}
</a>
{% endif %}
{% endif %}