diff --git a/colleges/models.py b/colleges/models.py index 295d32448a1affa5234a3c8ac7f7d2c235eea810..f61517b51a2c1962b377c252d74112920bc044ee 100644 --- a/colleges/models.py +++ b/colleges/models.py @@ -12,13 +12,8 @@ from .constants import POTENTIAL_FELLOWSHIP_STATUSES,\ POTENTIAL_FELLOWSHIP_IDENTIFIED, POTENTIAL_FELLOWSHIP_EVENTS from .managers import FellowQuerySet, PotentialFellowshipQuerySet -from profiles.models import Profile - from scipost.behaviors import TimeStampedModel -from scipost.constants import SCIPOST_DISCIPLINES, DISCIPLINE_PHYSICS,\ - SCIPOST_SUBJECT_AREAS, TITLE_CHOICES -from scipost.fields import ChoiceArrayField -from scipost.models import get_sentinel_user, Contributor +from scipost.models import get_sentinel_user class Fellowship(TimeStampedModel): diff --git a/colleges/urls.py b/colleges/urls.py index 83b89bbcc8381935fe0f4f2afe18a72eb68fac5b..0241278f714a41a59be61fd23e788a527f78cdcb 100644 --- a/colleges/urls.py +++ b/colleges/urls.py @@ -18,7 +18,7 @@ urlpatterns = [ name='colleges' ), url( - r'^(?P<discipline>[a-zA-Z]+)/$', + r'^detail/(?P<discipline>[a-zA-Z]+)/$', views.EditorialCollegeDetailView.as_view(), name='college_detail' ), diff --git a/colleges/views.py b/colleges/views.py index 2d3bd8ab282173b84e6482a71ea13dd1e180ff5f..a5b37f079a465500710c40a1007bb3d157b11650 100644 --- a/colleges/views.py +++ b/colleges/views.py @@ -29,8 +29,7 @@ from .forms import FellowshipForm, FellowshipRemoveSubmissionForm,\ PotentialFellowshipForm, PotentialFellowshipStatusForm, PotentialFellowshipEventForm from .models import Fellowship, PotentialFellowship, PotentialFellowshipEvent -from scipost.constants import SCIPOST_DISCIPLINES, SCIPOST_SUBJECT_AREAS,\ - subject_areas_raw_dict, specializations_dict +from scipost.constants import SCIPOST_SUBJECT_AREAS, subject_areas_raw_dict, specializations_dict from scipost.mixins import PermissionsMixin, PaginationMixin, RequestViewMixin from scipost.models import Contributor