{% extends "dashboard/base.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load static %} {% block title-page %}{{ exam.name }} | {% trans "group" %}{% endblock %} {% block content %}

{% csrf_token %}
{{ exam.name }}

{% trans "Description" %}: {% if is_operator %} {% endif %}
{% csrf_token %}
{{ exam.description|linebreaks }}

{% trans "Template" %}

{% csrf_token %}

{% trans "Examenees" %} {% trans "Remove all users" %}

{% csrf_token %} {% for i in users %} {% endfor %}
{% trans "Who" %}{% trans "Remove" %}
{% include "dashboard/_display-name.html" with user=i show_org=True %} {% trans "remove" %}
{{addmemberform.new_member}}

{% trans "Access permissions" %}

{% include "dashboard/_manage_access.html" with table_id="exam-detail-perm-table" %}

{% trans "Virtual machines" %}


{% for instance in instances %} {% empty %} {% endfor %}
{% trans "Owner" as t %} {% include "dashboard/vm-list/header-link.html" with name=t sort="owner" %} {% trans "State" as t %} {% include "dashboard/vm-list/header-link.html" with name=t sort="status" %} {% trans "Name" as t %} {% include "dashboard/vm-list/header-link.html" with name=t sort="name" %}
{% include "dashboard/_display-name.html" with user=instance.owner show_org=True %} {{ instance.get_status_display }} {{ instance.name }}
{% if request.GET.s %} {% trans "No result." %} {% else %} {% trans "You have no virtual machines." %} {% endif %}

{% trans "Owner" %}

{% if is_owner %} {% blocktrans %}You are the current owner of this template.{% endblocktrans %} {% else %} {% url "dashboard.views.profile" username=object.owner.username as url %} {% blocktrans with owner=object.owner name=object.owner.get_full_name%} The current owner of this template is {{name}} ({{owner}}). {% endblocktrans %} {% endif %} {% if is_owner or user.is_superuser %}
{% trans "Transfer ownership..." %} {% endif %}
{% if is_owner %}
{% trans "Delete" %}

{% trans "Delete Exam" %}

{% endif %}
{% endblock %}