Skip to content

Commit

Permalink
cleaned up markup (non-semantic change)
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketMan committed May 5, 2024
1 parent c4ffac3 commit cf4f356
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ui/templates/default/airplay.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{%~ set odays = [7, 14, 30] %}
{% set odays = [7, 14, 30] %}
<div class='top-airplay' style='display: none'>
<form action="?" method="POST" autocomplete="off">
<input type="hidden" name="action" value="">
<input type="hidden" name="subaction" value="viewTop">
<input type="hidden" name="limit" value="{{ limit }}">
<h2>Top airplay for the last
<select name='days'>
{%~ for oday in odays %}
<select name="days">
{% for oday in odays %}
<option value="{{ oday }}" {{~ oday == days ? " selected" }}>{{ oday }}</option>
{%~ endfor %}
{% endfor %}
</select>
days
days
</h2>
</form>
{% if topPlays | length %}
<table class='playlistTable' cellpadding='1'>
<table class='playlistTable'>
<thead>
<tr class='playlistHdr' align=left><th></th><th>Artist</th><th></th><th>Album/Label</th></tr>
</thead>
Expand Down

0 comments on commit cf4f356

Please sign in to comment.