diff --git a/views/dashboard.slim b/views/dashboard.slim
index c99593f9..ffa3f6df 100644
--- a/views/dashboard.slim
+++ b/views/dashboard.slim
@@ -3,7 +3,7 @@ javascript:
$('#deleteFileName').html(name);
$('#deleteConfirmModal').modal();
}
-
+
function fileDelete() {
$('#deleteFilenameInput').val($('#deleteFileName').html());
$('#deleteFilenameForm').submit();
@@ -11,9 +11,9 @@ javascript:
.row
.span5.offset1
-
+
h1 Your home page
-
+
- current_site.file_list.each do |file|
.row
.span4
@@ -22,14 +22,14 @@ javascript:
div style="margin-bottom: 30px"
span
i class="icon-globe"
-
+
a href="http://#{current_site.username}.neocities.org/#{file.filename}" target="_blank" View
span
i class="icon-edit"
- a href="#" Edit with visual editor
+ a href="#" Edit with visual editor not implemented yet.. ETA one week
span
i class="icon-edit"
- a href="#" Edit with text editor
+ a href="#" Edit with text editor not implemented yet.. ETA one day
span
i class="icon-trash"
a href="#" onclick="confirmFileDelete('#{file.filename}')" Delete
@@ -38,13 +38,13 @@ javascript:
div style="margin-bottom: 30px"
a href="http://#{current_site.username}.neocities.org/#{file.filename}" target="_blank" View
a href="#" onclick="confirmFileDelete('#{file.filename}')" Delete
-
+
Upload New File
.span5
h3 style="color: green": a href="http://#{current_site.username}.neocities.org" target="_blank" http://#{current_site.username}.neocities.org
br
-
+
.progress.progress-info.progress-striped
.bar style="width: #{(current_site.total_space / Site::MAX_SPACE) * 100}%"
@@ -61,4 +61,4 @@ form method="POST" action="/site_files/delete" id="deleteFilenameForm"
p You are about to delete the file . Are you sure?
.modal-footer
button.btn data-dismiss="modal" aria-hidden="true" Cancel
- button.btn.btn-danger onclick="fileDelete()" Delete
\ No newline at end of file
+ button.btn.btn-danger onclick="fileDelete()" Delete