mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
minor dashboard cleanup
This commit is contained in:
parent
0f4e147e72
commit
c24735332f
29 changed files with 285 additions and 197 deletions
51
dashboard-ui/appsweather.html
Normal file
51
dashboard-ui/appsweather.html
Normal file
|
@ -0,0 +1,51 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>App Settings</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="appsWeatherPage" data-role="page" class="page appsPage type-interior">
|
||||
|
||||
<div data-role="content">
|
||||
<div class="content-primary">
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
||||
<a href="appsplayback.html" data-role="button">Playback</a>
|
||||
<a href="appsweather.html" data-role="button" class="ui-btn-active">Weather</a>
|
||||
</div>
|
||||
<form class="appsWeatherForm">
|
||||
|
||||
<ul data-role="listview" class="ulForm">
|
||||
<li>
|
||||
<label for="txtWeatherLocation">Weather display location: </label>
|
||||
<input id="txtWeatherLocation" name="txtWeatherLocation" type="text" />
|
||||
<div class="fieldDescription">
|
||||
US zip code / City, State, Country / City, Country
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<label for="selectWeatherUnit">Weather display unit: </label>
|
||||
<select id="selectWeatherUnit" name="selectWeatherUnit">
|
||||
<option value="Celsius">Celsius</option>
|
||||
<option value="Fahrenheit">Fahrenheit</option>
|
||||
</select>
|
||||
</li>
|
||||
<li>
|
||||
<button type="submit" data-theme="b" data-icon="check">
|
||||
Save
|
||||
</button>
|
||||
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete">
|
||||
Cancel
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
$('.appsWeatherForm').off('submit', AppsWeatherPage.onSubmit).on('submit', AppsWeatherPage.onSubmit);
|
||||
</script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue