Cleanup setting template
All checks were successful
the build was successful

This commit is contained in:
Peter Stuifzand 2019-03-07 21:40:51 +01:00
parent 46f689725d
commit 8681d448bf
Signed by: peter
GPG Key ID: 374322D56E5209E8

View File

@ -70,14 +70,13 @@
<div class="field"> <div class="field">
<div class="control"> <div class="control">
<div class="select"> <div class="select">
<label class="label" for="type">Tracking Regex</label> <label class="label" for="type">Channel Type</label>
<select name="type" id="type"> <select name="type" id="type">
<option value="null" {{if eq (.CurrentSetting.ChannelType) "null" }}selected{{end}}>Null</option> <option value="null" {{if eq (.CurrentSetting.ChannelType) "null" }}selected{{end}}>Null</option>
<option value="sorted-set" {{if eq (.CurrentSetting.ChannelType) "sorted-set" }}selected{{end}}>Sorted Set</option> <option value="sorted-set" {{if eq (.CurrentSetting.ChannelType) "sorted-set" }}selected{{end}}>Sorted Set</option>
<option value="stream" {{if eq (.CurrentSetting.ChannelType) "stream" }}selected{{end}}>Streams</option> <option value="stream" {{if eq (.CurrentSetting.ChannelType) "stream" }}selected{{end}}>Streams</option>
</select> </select>
</div> </div>
<input type="text" class="input" name="include_regex" value="{{ .CurrentSetting.IncludeRegex }}" placeholder="enter regex to track items" />
</div> </div>
</div> </div>
<div class="field"> <div class="field">