luci/applications/luci-statistics/luasrc/view/admin_statistics/systemplugins.htm
Steven Barth 2bf012a40a * themes/fledermaus: Register on install
* applications/luci-statistics: Fixed wrong paths in templates
2008-06-09 08:48:10 +00:00

15 lines
455 B
HTML

<%+header%>
<h1><%:stat_systemplugins System plugins%></h1>
<p><%:stat_systemplugins_desc System plugins collecting values about system state and ressource usage on the device.:%>
<ul>
<% for plugin, desc in pairs(plugins) do %>
<% if luci.fs.isfile("/usr/lib/collectd/" .. plugin .. ".so") then %>
<li><a href="<%=controller%>/admin/statistics/collectd/system/<%=plugin%>"><%=desc%></a></li>
<% end %>
<% end %>
</ul>
</p>
<%+footer%>