iptv-database/.github/ISSUE_TEMPLATE/__channels_edit.yml

140 lines
4.5 KiB
YAML
Raw Normal View History

2022-09-11 15:34:09 -04:00
name: ✏️ Edit channel
description: Request to edit channel description
title: 'Edit: '
2023-03-23 18:40:00 -04:00
labels: ['channels:edit']
2022-09-11 15:34:09 -04:00
body:
- type: input
2023-10-04 21:54:29 -04:00
id: id
2022-09-11 15:34:09 -04:00
attributes:
label: Channel ID (required)
description: The ID of the channel that should be updated
placeholder: 'AnhuiTV.cn'
validations:
required: true
- type: markdown
attributes:
value: |
2023-10-15 14:42:31 -04:00
Please specify exactly what should be changed. To delete an existing value without replacement use the `~` symbol.
2022-09-11 15:34:09 -04:00
- type: input
2023-10-04 21:54:29 -04:00
id: name
2022-09-11 15:34:09 -04:00
attributes:
label: Channel Name
2023-10-16 15:18:05 -04:00
description: "Official channel name in English or call sign. May include: `a-z`, `0-9`, `space`, `-`, `!`, `:`, `&`, `.`, `+`, `'`, `/`, `»`, `#`, `%`, `°`, `$`, `@`, `?`, `|`"
2022-09-11 15:34:09 -04:00
placeholder: 'Anhui TV'
- type: input
2023-10-04 21:54:29 -04:00
id: alt_names
2022-09-11 15:34:09 -04:00
attributes:
2023-04-11 06:45:12 -04:00
label: Alternative Names
2022-10-18 11:41:46 -04:00
description: List of alternative channel names separated by `;`. May contain any characters except `,` and `"`
2022-09-11 15:34:09 -04:00
placeholder: '安徽卫视'
- type: input
2023-10-04 21:54:29 -04:00
id: network
2022-09-11 15:34:09 -04:00
attributes:
label: Network
2022-10-18 18:24:56 -04:00
description: Network of which this channel is a part. May contain any characters except `,` and `"`
2022-09-11 15:34:09 -04:00
placeholder: 'Anhui'
2022-10-17 09:33:21 -04:00
- type: input
2023-10-04 21:54:29 -04:00
id: owners
2022-10-17 09:33:21 -04:00
attributes:
label: Owners
2022-10-18 18:24:56 -04:00
description: List of channel owners separated by `;`. May contain any characters except `,` and `"`
2022-10-17 09:33:21 -04:00
placeholder: 'China Central Television'
2022-09-11 15:34:09 -04:00
- type: input
2023-10-04 21:54:29 -04:00
id: country
2022-09-11 15:34:09 -04:00
attributes:
label: Country
description: Country code from which the channel is transmitted. A list of all supported countries and their codes can be found in [data/countries.csv](https://github.com/iptv-org/database/blob/master/data/countries.csv)
placeholder: 'CN'
- type: input
2023-10-04 21:54:29 -04:00
id: subdivision
2022-09-11 15:34:09 -04:00
attributes:
label: Subdivision
description: Code of the subdivision (e.g., provinces or states) from which the broadcast is transmitted. A list of all supported subdivisions and their codes can be found in [data/subdivisions.csv](https://github.com/iptv-org/database/blob/master/data/subdivisions.csv)
placeholder: 'CN-AH'
- type: input
2023-10-04 21:54:29 -04:00
id: city
2022-09-11 15:34:09 -04:00
attributes:
label: City
description: Name of the city from which the channel is transmitted
placeholder: 'Hefei'
- type: input
2023-10-04 21:54:29 -04:00
id: broadcast_area
2022-09-11 15:34:09 -04:00
attributes:
label: Broadcast Area
2023-05-23 11:58:21 -04:00
description: List of codes describing the broadcasting area of the channel separated by `;`. Any combination of `r/<region_code>`, `c/<country_code>`, `s/<subdivision_code>`
2023-10-03 20:52:57 -04:00
placeholder: 'c/CN;r/EUR'
2022-09-11 15:34:09 -04:00
- type: input
2023-10-04 21:54:29 -04:00
id: languages
2022-09-11 15:34:09 -04:00
attributes:
label: Languages
description: List of languages in which the channel is broadcast separated by `;`. A list of all supported languages and their codes can be found in [data/languages.csv](https://github.com/iptv-org/database/blob/master/data/languages.csv)
placeholder: 'zho;eng'
- type: input
2023-10-04 21:54:29 -04:00
id: categories
2022-09-11 15:34:09 -04:00
attributes:
label: Categories
description: List of categories to which this channel belongs separated by `;`. A list of all supported categories can be found in [data/categories.csv](https://github.com/iptv-org/database/blob/master/data/categories.csv)
placeholder: 'animation;kids'
- type: dropdown
2023-10-04 21:54:29 -04:00
id: is_nsfw
2022-09-11 15:34:09 -04:00
attributes:
label: NSFW
description: Indicates whether the channel broadcasts adult content
options:
- 'FALSE'
- 'TRUE'
- type: input
2023-10-04 21:54:29 -04:00
id: launched
2022-09-11 15:34:09 -04:00
attributes:
label: Launched
description: Launch date of the channel (`YYYY-MM-DD`)
placeholder: '2016-07-28'
- type: input
2023-10-04 21:54:29 -04:00
id: closed
2022-09-11 15:34:09 -04:00
attributes:
label: Closed
description: Date on which the channel closed (`YYYY-MM-DD`)
placeholder: '2020-05-31'
- type: input
2023-10-04 21:54:29 -04:00
id: replaced_by
2022-09-11 15:34:09 -04:00
attributes:
label: Replaced By
description: The ID of the channel that this channel was replaced by
placeholder: 'CCTV1.cn'
- type: input
2023-10-04 21:54:29 -04:00
id: website
2022-09-11 15:34:09 -04:00
attributes:
label: Website
description: Official website URL
placeholder: 'http://www.ahtv.cn/'
- type: input
2023-10-04 21:54:29 -04:00
id: logo
2022-09-11 15:34:09 -04:00
attributes:
label: Logo
2023-05-26 03:34:49 -04:00
description: "Logo URL. Only URL with HTTPS protocol are allowed. Supported image types: `PNG`, `JPEG`. Max size: 512x512 pixels. The link should not be [geo-blocked](https://en.wikipedia.org/wiki/Geo-blocking)"
2022-09-11 15:34:09 -04:00
placeholder: 'https://example.com/logo.png'
- type: textarea
2023-10-04 21:54:29 -04:00
id: notes
2022-09-11 15:34:09 -04:00
attributes:
label: Notes
description: 'Anything else we should know?'