prvng_core/forminquire/templates/server-delete-confirm.form.j2
Jesús Pérez 85ce530733
feat: update provisioning core CLI, libraries, and plugins
Update core components including CLI, Nushell libraries, plugins system,
and utility scripts for the provisioning system.

CLI Updates:
- Command implementations
- CLI utilities and dispatching
- Help system improvements
- Command validation

Library Updates:
- Configuration management system
- Infrastructure validation
- Extension system improvements
- Secrets management
- Workspace operations
- Cache management system

Plugin System:
- Interactive form plugin (inquire)
- KCL integration plugin
- Performance optimization plugins
- Plugin registration system

Utilities:
- Build and distribution scripts
- Installation procedures
- Testing utilities
- Development tools

Documentation:
- Library module documentation
- Extension API guides
- Plugin usage guides
- Service management documentation

All changes are backward compatible. No breaking changes.
2025-12-11 21:57:05 +00:00

51 lines
1.3 KiB
Django/Jinja

# Auto-generated delete confirmation form
# Generated: {{ now_iso }}
# Server: {{ server_name }}
[meta]
title = "Confirm Server Deletion"
description = "WARNING: This operation cannot be reversed. Please confirm carefully."
allow_cancel = true
[items.server_display]
type = "text"
prompt = "Server to Delete"
default = "{{ server_name }}"
help = "Server name (read-only for confirmation)"
read_only = true
{% if server_ip %}
[items.server_ip]
type = "text"
prompt = "Server IP Address"
default = "{{ server_ip }}"
help = "IP address (read-only for confirmation)"
read_only = true
{% endif %}
{% if server_status %}
[items.server_status]
type = "text"
prompt = "Current Status"
default = "{{ server_status }}"
help = "Current server status (read-only)"
read_only = true
{% endif %}
[items.confirmation_text]
type = "text"
prompt = "Type server name to confirm deletion"
default = ""
help = "You must type the exact server name '{{ server_name }}' to proceed"
required = true
[items.final_confirm]
type = "confirm"
prompt = "I understand this action is irreversible. Delete server?"
help = "This will permanently delete the server and all its data"
[items.backup_before_delete]
type = "confirm"
prompt = "Create backup before deletion?"
help = "Optionally create a backup of the server configuration"