소스 검색

Fix title of retroarch import page

Colin Powell 2 년 전
부모
커밋
a3bf9b0081
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      vrobbler/apps/scrobbles/views.py

+ 2 - 0
vrobbler/apps/scrobbles/views.py

@@ -189,6 +189,8 @@ class BaseScrobbleImportDetailView(DetailView):
             title = "Audioscrobbler TSV Import"
         if self.model == LastFmImport:
             title = "LastFM Import"
+        if self.model == RetroarchImport:
+            title = "Retroarch Import"
         context_data["title"] = title
         return context_data