{% extends 'masakaridashboard/default/base.html' %} {% load i18n %} {% block title %}{% trans "VMove Detail" %}{% endblock %} {% block page_header %} {% include "horizon/common/_page_header.html" with title=_("VMove Detail") %} {% endblock page_header %} {% block main %} {% load i18n sizeformat parse_date %}

{% trans "VMove Detail" %}


{% trans "UUID" %}
{{ vmove.uuid }}
{% trans "Notification UUID" %}
{{ vmove.notification_uuid }}
{% trans "Server ID" %}
{{ vmove.server_id }}
{% trans "Server Name" %}
{{ vmove.server_name }}
{% trans "Type" %}
{{ vmove.type }}
{% trans "Source Host" %}
{{ vmove.source_host }}
{% trans "Dest Host" %}
{{ vmove.dest_host }}
{% trans "Start Time" %}
{{ vmove.start_time }}
{% trans "End Time" %}
{{ vmove.end_time }}
{% trans "Status" %}
{{ vmove.status }}
{% trans "Message" %}
{{ vmove.message }}
{% endblock %}