1<?php
2/* vim:set softtabstop=4 shiftwidth=4 expandtab: */
3/**
4 *
5 * LICENSE: GNU Affero General Public License, version 3 (AGPL-3.0-or-later)
6 * Copyright 2001 - 2020 Ampache.org
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
20 *
21 */
22/** @var TVShow_Season $libitem */
23
24use Ampache\Repository\Model\TVShow_Season;
25
26?>
27<div>
28    <form method="post" id="edit_tvshow_season_<?php echo $libitem->id; ?>" class="edit_dialog_content">
29        <table class="tabledata">
30            <tr>
31                <td class="edit_dialog_content_header"><?php echo T_('Season') ?></td>
32                <td><input type="number" name="season_number" value="<?php echo scrub_out($libitem->season_number); ?>" autofocus /></td>
33            </tr>
34            <tr>
35                <td class="edit_dialog_content_header"><?php echo T_('TV Show') ?></td>
36                <td><?php show_tvshow_select('tvshow', $libitem->tvshow); ?></td>
37            </tr>
38        </table>
39        <input type="hidden" name="id" value="<?php echo $libitem->id; ?>" />
40        <input type="hidden" name="type" value="tvshow_season_row" />
41    </form>
42</div>
43