You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
889 B
HTML

1 year ago
<%
local util = require "luci.util"
local container_status = util.trim(util.exec("/usr/libexec/apps/frigate/frigate.sh status"))
local container_running = string.match(string.lower(container_status), "^up%W")
11 months ago
local port = util.trim(util.exec("/usr/libexec/apps/frigate/frigate.sh port"))
11 months ago
if port == "" then
port="5100"
end
1 year ago
-%>
<div class="cbi-value">
<div class="cbi-value-field">
<% if container_running then %>
<button class="cbi-button cbi-button-success" disabled="true"><%= container_status %></button>
11 months ago
<input type="button" class="btn cbi-button cbi-button-apply" name="start" value="<%:Open frigate%>" onclick="window.open('http://'+location.hostname+':<%=port%>/', '_blank')">
1 year ago
<% else %>
<button class="cbi-button cbi-button-negative" disabled="true"><%= container_status %></button>
<% end %>
</div>
</div>