Work towards unifiying manual scrobbling
This commit is contained in:
@ -2,4 +2,13 @@ from django import forms
|
||||
|
||||
|
||||
class ImdbScrobbleForm(forms.Form):
|
||||
imdb_id = forms.CharField(label="IMDB", max_length=30)
|
||||
imdb_id = forms.CharField(
|
||||
label="",
|
||||
widget=forms.TextInput(
|
||||
attrs={
|
||||
'class': "form-control form-control-dark w-100",
|
||||
'placeholder': "Scrobble something (IMDB ID, String, TVDB ID ...)",
|
||||
'aria-label': "Scrobble something",
|
||||
}
|
||||
),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user