{% extends 'admin/layout.html.twig' %} {% block stylesheets %} {{ encore_entry_link_tags('css/pages/company-check') }} {% endblock %} {% block javascripts %} {{ knp_pagination_rel_links(pagination) }} {{ encore_entry_script_tags('js/pages/company-check.min') }} {% endblock %} {% block body %}
{# #} {%- if pagination.getTotalItemCount > 0 %} {#
#}
{% for companyChange in pagination %} {# #} {% endfor %}
Pending Company Check

Select final details of companies and then approve them!

{{ knp_pagination_sortable(pagination, 'Id', 'c.id') }} {{ knp_pagination_sortable(pagination, 'Created at', 'cc.createdAt') }} {{ knp_pagination_sortable(pagination, 'Name', 'c.name') }} {{ knp_pagination_sortable(pagination, 'Website', 'c.website') }} {{ knp_pagination_sortable(pagination, 'Description', 'c.description') }} {{ knp_pagination_sortable(pagination, 'Email', 'c.email') }} {{ knp_pagination_sortable(pagination, 'Phone', 'c.phone') }} {{ knp_pagination_sortable(pagination, 'Default Language', 'c.defaultLanguage') }} {{ knp_pagination_sortable(pagination, 'Review Count', 'c.reviewCount') }} {{ knp_pagination_sortable(pagination, 'Review Score', 'c.reviewScore') }} {{ knp_pagination_sortable(pagination, 'Category', 'cc.category') }} {{ 'Additional Categories'|trans }} {{ 'Logo'|trans }} {{ 'Screenshot'|trans }} {{ 'Address'|trans }} Actions
#{{ companyChange.company.getId() }} {{ companyChange.createdAt | date('Y.m.d') }}
{{ companyChange.createdAt | date('H:i:s') }}
    {% for value in companyChange.names %}
  • {% endfor %}
    {% for value in companyChange.websites %}
  • {% endfor %}
{{ companyChange.descriptions|join(', ')|raw }}
    {% for index, value in companyChange.descriptions %}
  • {% endfor %}
    {% for value in companyChange.emails %}
  • {% endfor %}
    {% for value in companyChange.phones %}
  • {% endfor %}
    {% for value in companyChange.defaultLanguages %}
  • {% endfor %}
    {% for value in companyChange.reviewCounts %}
  • {% endfor %}
    {% for value in companyChange.reviewScores %}
  • {% endfor %}
    {% for value in companyChange.mainCategories %}
  • {% endfor %}
    {% for value in companyChange.addonCategories %}
  • {% endfor %}
    {% for value in companyChange.logos %}
  • {% endfor %} {% for value in companyChange.screenshots %}
  • {% endfor %}
    {% for value in companyChange.screenshots %}
  • {% endfor %}
    {% for index, value in companyChange.addresses %} {% set addressString = "#{value.country}, #{value.zip}, #{value.city},
    #{value.street}" %} {% set addressSlug = "#{value.country}-#{value.zip}-#{value.city}-#{value.street}"|slug %}
  • {% endfor %} {% for index, value in companyChange.addressString ?? [] %}
  • {% endfor %}
Approve Decline
{% else %} {{ include('components/_alert.html.twig', {id: 'no-record', type: 'info', message: 'No record found.'}) }} {% endif -%}
{% endblock %}