aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl
diff options
context:
space:
mode:
Diffstat (limited to 'tpl')
-rw-r--r--tpl/dailyrss.html4
-rw-r--r--tpl/pluginsadmin.html16
2 files changed, 10 insertions, 10 deletions
diff --git a/tpl/dailyrss.html b/tpl/dailyrss.html
index d959d6be..4133ca3e 100644
--- a/tpl/dailyrss.html
+++ b/tpl/dailyrss.html
@@ -2,7 +2,7 @@
2 <title>{$title} - {function="strftime('%A %e %B %Y', $daydate)"}</title> 2 <title>{$title} - {function="strftime('%A %e %B %Y', $daydate)"}</title>
3 <guid>{$absurl}</guid> 3 <guid>{$absurl}</guid>
4 <link>{$absurl}</link> 4 <link>{$absurl}</link>
5 <pubDate>{$rfc822date}</pubDate> 5 <pubDate>{$rssdate}</pubDate>
6 <description><![CDATA[ 6 <description><![CDATA[
7 {loop="links"} 7 {loop="links"}
8 <h3><a href="{$value.url}">{$value.title}</a></h3> 8 <h3><a href="{$value.url}">{$value.title}</a></h3>
@@ -13,4 +13,4 @@
13 <br><br><hr> 13 <br><br><hr>
14 {/loop} 14 {/loop}
15 ]]></description> 15 ]]></description>
16</item> \ No newline at end of file 16</item>
diff --git a/tpl/pluginsadmin.html b/tpl/pluginsadmin.html
index 4f7d091e..5ddcf061 100644
--- a/tpl/pluginsadmin.html
+++ b/tpl/pluginsadmin.html
@@ -36,7 +36,7 @@
36 <tbody> 36 <tbody>
37 {loop="$enabledPlugins"} 37 {loop="$enabledPlugins"}
38 <tr data-line="{$key}" data-order="{$counter}"> 38 <tr data-line="{$key}" data-order="{$counter}">
39 <td class="center"><input type="checkbox" name="{$key}" checked="checked"></td> 39 <td class="center"><input type="checkbox" name="{$key}" id="{$key}" checked="checked"></td>
40 <td class="center"> 40 <td class="center">
41 <a href="#" 41 <a href="#"
42 onclick="return orderUp(this.parentNode.parentNode.getAttribute('data-order'));"> 42 onclick="return orderUp(this.parentNode.parentNode.getAttribute('data-order'));">
@@ -48,8 +48,8 @@
48 </a> 48 </a>
49 <input type="hidden" name="order_{$key}" value="{$counter}"> 49 <input type="hidden" name="order_{$key}" value="{$counter}">
50 </td> 50 </td>
51 <td>{$key}</td> 51 <td><label for="{$key}">{function="str_replace('_', ' ', $key)"}</label></td>
52 <td>{$value.description}</td> 52 <td><label for="{$key}">{$value.description}</label></td>
53 </tr> 53 </tr>
54 {/loop} 54 {/loop}
55 </tbody> 55 </tbody>
@@ -73,9 +73,9 @@
73 </tr> 73 </tr>
74 {loop="$disabledPlugins"} 74 {loop="$disabledPlugins"}
75 <tr> 75 <tr>
76 <td class="center"><input type="checkbox" name="{$key}"></td> 76 <td class="center"><input type="checkbox" name="{$key}" id="{$key}"></td>
77 <td>{$key}</td> 77 <td><label for="{$key}">{function="str_replace('_', ' ', $key)"}</label></td>
78 <td>{$value.description}</td> 78 <td><label for="{$key}">{$value.description}</label></td>
79 </tr> 79 </tr>
80 {/loop} 80 {/loop}
81 </table> 81 </table>
@@ -99,7 +99,7 @@
99 {loop="$enabledPlugins"} 99 {loop="$enabledPlugins"}
100 {if="count($value.parameters) > 0"} 100 {if="count($value.parameters) > 0"}
101 <div class="plugin_parameters"> 101 <div class="plugin_parameters">
102 <h2>{$key}</h2> 102 <h2>{function="str_replace('_', ' ', $key)"}</h2>
103 {loop="$value.parameters"} 103 {loop="$value.parameters"}
104 <div class="plugin_parameter"> 104 <div class="plugin_parameter">
105 <div class="float_label"> 105 <div class="float_label">
@@ -128,4 +128,4 @@
128 128
129<script src="inc/plugin_admin.js#"></script> 129<script src="inc/plugin_admin.js#"></script>
130</body> 130</body>
131</html> \ No newline at end of file 131</html>