summaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
Diffstat (limited to 'views')
-rw-r--r--views/partials/files.ejs2
-rw-r--r--views/partials/settings.ejs30
2 files changed, 31 insertions, 1 deletions
diff --git a/views/partials/files.ejs b/views/partials/files.ejs
index 456fe17..72c39af 100644
--- a/views/partials/files.ejs
+++ b/views/partials/files.ejs
@@ -1,4 +1,4 @@
-<table id="files">
+<table class="files" id="files">
<script class="template" type="text/html">
<tr class="file">
<td>
diff --git a/views/partials/settings.ejs b/views/partials/settings.ejs
index d3833e1..d74d557 100644
--- a/views/partials/settings.ejs
+++ b/views/partials/settings.ejs
@@ -71,6 +71,36 @@
<div><button class="thread_delete">Delete&nbsp;This&nbsp;Thread</button></div>
</div>
</div>
+
+ <div id="right_side">
+
+ <table class="files" id="settings_files">
+ <script class="settingsFilesTemplate" type="text/html">
+ <tr class="file">
+ <td>
+ <a href="{{link}}" class="file">{{filename}}</a>
+ </td>
+ <td class="{{date_class}}">
+ {{date}}
+ </td>
+ <td class="{{date_class}}">
+ {{time}}
+ </td>
+ <td>
+ {{size}}
+ </td>
+ <td class="user">
+ <a href="/profile/{{username}}">{{username}}</a>
+ </td>
+ <td>
+ <a href="#" class="delete" id={{id}}>delete</a>
+ </td>
+ </tr>
+ </script>
+ </table>
+
+
+ </div>
</div>
</div>
</div>