{% extends 'base.html' %} {% load common_tags %} {% load users_tags %} {% load static %} {% load i18n %} {% block custom_head_css_js %} {% endblock %} {% block content %}
{{ asset_group.name }}
{% trans 'Name' %}: {{ asset_group.name }}
{% trans 'Date created' %}: {{ asset_group.date_created }}
{% trans 'Created by' %}: {{ asset_group.created_by }}
{% trans 'Comment' %}: {{ asset_group.comment }}
{% trans 'Asset list of ' %} {{ asset_group.name }}
{% for asset in page_obj %} {% endfor %}
{% trans 'Hostname' %} {% trans 'IP' %} {% trans 'Port' %} {% trans 'Alive' %}
{{ asset.hostname }} {{ asset.ip }} {{ asset.port }} Alive
{% include '_pagination.html' %}
{% trans 'Associate system user' %}
{% for group in user.groups.all %} {% endfor %}
{% trans 'repush system user' %}:
{{ group.name }}
{% trans 'Add asset to this group' %}
{% for group in user.groups.all %} {% endfor %}
{{ group.name }}
{% endblock %} {% block custom_foot_js %} {% endblock %}