diff --git a/vrobbler/apps/scrobbles/views.py b/vrobbler/apps/scrobbles/views.py
index feee2a0..94f9985 100644
--- a/vrobbler/apps/scrobbles/views.py
+++ b/vrobbler/apps/scrobbles/views.py
@@ -85,7 +85,7 @@ class RecentScrobbleList(ListView):
).order_by('-timestamp')[:15]
-class ManualScrobbleView(FormView):
+class ManualImdbScrobbleView(FormView):
form_class = ScrobbleForm
template_name = 'scrobbles/manual_form.html'
diff --git a/vrobbler/templates/base.html b/vrobbler/templates/base.html
index 2560ccc..d7a35f1 100644
--- a/vrobbler/templates/base.html
+++ b/vrobbler/templates/base.html
@@ -244,9 +244,9 @@
{% if user.is_authenticated %}
-
+
- Manual scrobble
+ IMDB scrobble
diff --git a/vrobbler/urls.py b/vrobbler/urls.py
index 83353b4..d79f007 100644
--- a/vrobbler/urls.py
+++ b/vrobbler/urls.py
@@ -3,7 +3,7 @@ from django.conf.urls.static import static
from django.contrib import admin
from django.urls import include, path
from rest_framework import routers
-from scrobbles.views import RecentScrobbleList, ManualScrobbleView
+import scrobbles.views as scrobbles_views
from videos import urls as video_urls
from scrobbles import urls as scrobble_urls
@@ -15,9 +15,13 @@ urlpatterns = [
# path("movies/", include(movies, namespace="movies")),
# path("shows/", include(shows, namespace="shows")),
path("api/v1/scrobbles/", include(scrobble_urls, namespace="scrobbles")),
- path('manual/', ManualScrobbleView.as_view(), name='manual-scrobble'),
+ path(
+ 'manual/imdb/',
+ scrobbles_views.ManualImdbScrobbleView.as_view(),
+ name='manual-scrobble',
+ ),
path("", include(video_urls, namespace="videos")),
- path("", RecentScrobbleList.as_view(), name="home"),
+ path("", scrobbles_views.RecentScrobbleList.as_view(), name="home"),
]
if settings.DEBUG: