mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
create sync job items pages
This commit is contained in:
parent
955e6cda51
commit
25a2d421dc
10 changed files with 442 additions and 23 deletions
28
dashboard-ui/mysyncjob.html
Normal file
28
dashboard-ui/mysyncjob.html
Normal file
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>${TitleSync}</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="mySyncJobPage" data-role="page" data-theme="b" class="page libraryPage syncJobPage mySyncPage" data-contextname="${TitleSync}">
|
||||
|
||||
<div class="libraryViewNav">
|
||||
<a href="mysync.html" class="ui-btn-active">${TabSyncJobs}</a>
|
||||
</div>
|
||||
|
||||
<div data-role="content">
|
||||
|
||||
<div class="readOnlyContent" style="margin: 0 auto;">
|
||||
<h1>${HeaderSyncJobInfo}</h1>
|
||||
<form class="syncJobForm"></form>
|
||||
<br />
|
||||
<br />
|
||||
<div class="jobItems"></div>
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$('.syncJobForm').off('submit', SyncJobPage.onSubmit).on('submit', SyncJobPage.onSubmit);
|
||||
</script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue