{% extends "user_list.html.twig" %} {% block admin_user_list_colgroup %} {% endblock %} {% block admin_user_list_filter %} {# ACTIVE #}
 
{# B2B-ACCOUNT-NO #}
{# B2B-ACCOUNT-TYPE #}
{# B2B-ACCOUNT-COMPANY #}
{# MAIL #}
{# USER-LASTNAME #}
{# USER-FIRSTNAME #}
{# ROLLE #}
 
{# SEARCH #}
{% endblock %} {% block admin_user_list_sorting %} {# AVTIVE #}   {{ translate({ ident: "C4S_B2B_EXTENDED_ACTIVE" }) }} {# B2B-ACCOUNT-NR #}   {{ translate({ ident: "C4S_B2B_USERLIST_ACCOUNT_NUMBER" }) }} {# B2B-ACCOUNT-TYPE #}   {{ translate({ ident: "C4S_B2B_USERLIST_ACCOUNT_TYPE" }) }} {# B2B-ACCOUNT-COMPANY #}   {{ translate({ ident: "C4S_B2B_USERLIST_ACCOUNT_COMPANY" }) }} {# MAIL #}   {{ translate({ ident: "GENERAL_EMAIL" }) }} {# USER-LASTNAME #}   {{ translate({ ident: "C4s_B2B_USERLIST_LAST_NAME" }) }} {# USER-FIRSTNAME #}   {{ translate({ ident: "C4s_B2B_USERLIST_FIRST_NAME" }) }} {# ROLLE #} {{ translate({ ident: "C4S_B2B_USERLIST_ACCOUNT_ROLE" }) }} {# SOURCE #} {{ translate({ ident: "C4S_B2B_USERLIST_ACCOUNT_SOURCE" }) }} {% endblock %} {% block admin_user_list_item %} {% if listitem['blacklist'] is defined and listitem.blacklist == 1 %} {% set listclass = "listitem3" %} {% else %} {% set listclass = "listitem" ~ blWhite %} {% endif %} {% if listitem.getId() == oxid %} {% set listclass = "listitem4" %} {% endif %} {% if listitem.hasB2BAccount() %} {% set oB2BAccount = listitem.getB2BAccount() %} {% endif %} {# ACTIVE #}
 
{# B2B-ACCOUNT-NR #}
{% if listitem.hasB2BAccount() %} {{ oB2BAccount.getDebNr() }} {% endif %}
{# B2B-ACCOUNT-TYPE #}
{% if listitem.hasB2BAccount() %} {{ oB2BAccount.getType() }} {% endif %}
{# B2B-ACCOUNT-COMPANY #}
{% if listitem.hasB2BAccount() %} {{ oB2BAccount.getTitle() }} {% endif %}
{# MAIL #}
{{ listitem.oxuser__oxusername.value }}
{# USER-LASTNAME #}
{% if not listitem.oxuser__oxlname.value %}-kein Name-{% else %}{{ listitem.oxuser__oxlname.value }}{% endif %}
{# USER-FIRSTNAME #}
{% if not listitem.oxuser__oxfname.value %}-kein Name-{% else %}{{ listitem.oxuser__oxfname.value }}{% endif %}
{# ROLLE #}
{% if listitem.hasB2BAccount() %} {{ listitem.getB2BUserRoleTitle() }} {% endif %}
{# SOURCE #}
{% if not listitem.oxuser__c4ssource.value %}-{% else %}{{ listitem.oxuser__c4ssource.value }}{% endif %}
{# DELETE #} {% if not listitem.isOx() and not readonly and not listitem.blPreventDelete and listitem.oxuser__c4ssource.value is empty %} {% endif %} {% endblock %}