{% extends "base.html" %}{% block content %}
| ID | {{ vm.id }} |
|---|---|
| Status | {{ vm.status }} |
| Flavor | {{ vm.flavor }} |
| Image | {{ vm.image }} |
| Private IPs | {{ vm.private_ips|join(", ") }} |
| Floating IPs | {{ vm.floating_ips|join(", ") }} |
| Security groups | {{ vm.security_groups|join(", ") }} |
| Key | {{ vm.key_name or "—" }} |
| Created | {{ vm.created_at or "—" }} |
back {% endblock %}