Continued refactoring.

This commit is contained in:
2019-12-23 23:52:38 +02:00
parent 6b843f1fc2
commit 3e835af295
3 changed files with 52 additions and 16 deletions

View File

@ -10,10 +10,10 @@ from django.views.generic import CreateView, UpdateView, DeleteView, FormView
from django.views.generic.edit import FormMixin
from django.conf import settings
from django.core.paginator import Paginator
from YtManagerApp.management.videos import get_videos
from YtManagerApp.services.videos import get_videos
from YtManagerApp.models import Subscription, SubscriptionFolder, VIDEO_ORDER_CHOICES, VIDEO_ORDER_MAPPING
from YtManagerApp.management.services import Services
from YtManagerApp.utils import youtube, subscription_file_parser
from YtManagerApp.services import Services
from YtManagerApp.utils import subscription_file_parser
from YtManagerApp.views.controls.modal import ModalMixin
import logging