diff options
author | Marcel Klehr <mklehr@gmx.net> | 2013-03-26 16:23:47 +0100 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2013-03-26 16:23:47 +0100 |
commit | 7edfff75743a876d94411e9a1313a8f19777502c (patch) | |
tree | 381a94f2cc80ebf92e7076977ae0e58d44ae01f0 /src/templates/admin/plugins.html | |
parent | 638cea5fd65cb0845cbb290bcaf6630ffea76a24 (diff) | |
download | etherpad-lite-7edfff75743a876d94411e9a1313a8f19777502c.zip |
/admin/plugins: Show some text if nothing is display otherwise
Diffstat (limited to 'src/templates/admin/plugins.html')
-rw-r--r-- | src/templates/admin/plugins.html | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/templates/admin/plugins.html b/src/templates/admin/plugins.html index e9c34917..8ca24644 100644 --- a/src/templates/admin/plugins.html +++ b/src/templates/admin/plugins.html @@ -32,7 +32,7 @@ <div class="innerwrapper">
<h2>Installed plugins</h2>
- <table>
+ <table class="installed-results">
<thead>
<tr>
<th>Name</th>
@@ -56,6 +56,12 @@ </tbody>
<tbody id="installed-plugins">
</tbody>
+ <tbody>
+ <tr><td></td><td class="messages">
+ <p class="nothing-installed">You haven't installed any plugins yet.</p>
+ <p class="fetching">Fetching installed plugins...</p>
+ </td><td></td></tr>
+ </tbody>
</table>
<div class="paged listing search-results">
@@ -91,9 +97,11 @@ <tbody class="results">
</tbody>
<tbody>
- <tr><td>
- <div id="search-progress" class="progress"><img src="../static/img/loading.gif"/></div>
- </td></tr>
+ <tr><td></td><td class="messages">
+ <div class="search-progress" class="progress"><img src="../static/img/loading.gif"/></div>
+ <p class="nothing-found">No plugins found.</p>
+ <p class="fetching">Fetching catalogue...</p>
+ </td><td></td></tr>
</tbody>
</table>
</div>
|