{% extends '_list_base.html' %} {% load i18n %} {% load common_tags %} {% block content_left_head %} {% trans "Create system user" %} {% endblock %} {% block table_head %} {% trans 'ID' %} {% trans 'Name' %} {% trans 'Username' %} {% trans 'Asset num' %} {% trans 'Asset group num' %} {% trans 'Unavailable' %} {% trans 'Comment' %} {% endblock %} {% block table_body %} {% for system_user in system_user_list %} {{ system_user.id }} {{ system_user.name }} {{ system_user.username }} {{ system_user.assets.count }} {{ system_user.asset_groups.count }} {{ system_user.assets.count }} {{ system_user.comment|truncatewords:4 }} {% trans 'Script' %} {% trans 'Refresh' %} {% trans 'Update' %} {% trans 'Delete' %} {% endfor %} {% endblock %}