@inherits MSGComponentBase
@if (this.UseSmallForm)
{
@if (this.isDraggingOver)
{
}
else if (this.DocumentPaths.Any())
{
}
else
{
}
}
else
{
@T("Drag and drop files into the marked area or click here to attach documents: ")
@T("Add file")
@foreach (var fileInfo in this.DocumentPaths.Select(file => new FileInfo(file)))
{
}
@T("Clear file list")
}