The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
402 B
17 lines
402 B
7 years ago
|
@model Teknik.Areas.Upload.ViewModels.DeleteViewModel
|
||
|
|
||
|
<div class="container">
|
||
|
<div class="row">
|
||
|
<div class="col-sm-12 text-center">
|
||
|
@if (Model.Deleted)
|
||
|
{
|
||
|
<h1>@Model.File has been Deleted</h1>
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
<h1>@Model.File was unable to be Deleted</h1>
|
||
|
}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|