@model QuestionnaireViewModel @{ ViewData["Title"] = "Delete Questionnaire"; }

Delete Questionnaire

This action will permanently remove this questionnaire and all associated data

⚠️ Critical Warning

  • This action cannot be undone
  • All questions and answers will be permanently deleted
  • Any survey responses will be lost forever
  • Associated data and analytics will be removed

Questionnaire Details

Title
@Model.Title
Questionnaire ID
#@Model.Id
Description
@if (!string.IsNullOrEmpty(Model.Description)) { @Html.Raw(Model.Description) } else { No description provided }

Content Statistics

@Model.Questions.Count Questions
@Model.Questions.Sum(q => q.Answers.Count) Total Answers
@Model.Questions.Count(q => q.Answers.Any(a => a.IsOtherOption)) Other Options
Back to List
@section Scripts { }