{% extends 'base.html.twig' %} {% block title %}{{ company.name }} | Wanted{% endblock %} {% block header %}{% endblock %} {% block main_class %}company-screen stitch-page{% endblock %} {% block body %} {% set heroVideo = companyVideos|first ?: communityVideos|first %}
{% if company.heroImagePath %} {{ company.name }} {% elseif heroVideo and heroVideo.thumbnailUrl %} {{ company.name }} {% else %}
{% endif %}
{% if isOwner %}
{% endif %}
{% if company.heroImagePath %} {{ company.name }} {% else %} {{ company.name|slice(0, 1)|upper }} {% endif %}

{{ company.name }}

{% if company.category is not null %} {{ company.category.name }} {% else %} Unternehmen {% endif %} · {{ company.city }}

{{ companyVideos|length + communityVideos|length }}Videos
{% if providerRatingAggregate %}{{ providerRatingAggregate.avg|number_format(1, ',', '') }}{% else %}—{% endif %} Bewertung{% if providerRatingAggregate %} ({{ providerRatingAggregate.count }}){% endif %}
{{ likesCount }}Likes
{% if profileIntroVideo is defined and profileIntroVideo %}

Profilvideo

{% if profileIntroVideo.moderationStatus == 'approved' and profileIntroVideo.playbackUrl %}
{{ profileIntroVideo.title }}
{% elseif profileIntroVideo.moderationStatus == 'pending' %}

Profilvideo wird geprueft. Dein Profil ist weiterhin sichtbar.

{% endif %}
{% endif %}

Unsere Clips

{% for video in companyVideos %}
{% if video.playbackUrl %} {% elseif video.thumbnailUrl %} {{ video.title }} {% endif %} {{ video.title }}
{% else %}

Noch keine Clips vom Unternehmen.

{% endfor %}

User uploaded Videos

{% for video in communityVideos %}
{% if video.playbackUrl %} {% elseif video.thumbnailUrl %} {{ video.title }} {% endif %} {{ video.title }}{% if video.providerRating %} ★{{ video.providerRating }}{% endif %}
{% else %}

Noch keine Community-Clips.

{% endfor %}
{% endblock %}