@inherits MSGComponentBase @if (this.UseSmallForm) {
@{ var fileInfos = this.DocumentPaths.Select(file => new FileInfo(file)).ToList(); } @if (fileInfos.Any()) { } else { }
} else {
@T("Drag and drop files here or click to attach documents.") @foreach (var fileInfo in this.DocumentPaths.Select(file => new FileInfo(file))) { } @T("Clear file list")
}