diff options
Diffstat (limited to 'src/views/panes/admin/files.ecr')
-rw-r--r-- | src/views/panes/admin/files.ecr | 31 |
1 files changed, 28 insertions, 3 deletions
diff --git a/src/views/panes/admin/files.ecr b/src/views/panes/admin/files.ecr index d5c4f0d..f0fe602 100644 --- a/src/views/panes/admin/files.ecr +++ b/src/views/panes/admin/files.ecr @@ -9,15 +9,40 @@ <div class='btn-group btn-group-sm'> <a href='#' - id='files-upload' class='btn btn-primary' - title='Upload file to current directory.' + title='Upload file(s) to current directory.' + data-toggle='dropdown' > <i class='fa fa-upload'></i> - Upload File... + Upload + <i class='fa fa-caret-down'></i> </a><!-- btn --> + + <ul id='files-upload' class='dropdown-menu'> + <li role='presentation'> + <a + href='#' + title='Upload file to current directory.' + data-id='file' + > + Upload File... + </a> + </li> + + <li role='presentation'> + <a + href='#' + title='Upload multiple files as a zip file.' + data-id='zip' + > + Bulk Upload... + </a> + </li> + </ul><!-- dropdown-menu --> </div><!-- btn-group --> + <%= divider %> + <div class='btn-group btn-group-sm'> <a href='#' |