We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2562fb2 commit d8471beCopy full SHA for d8471be
readthedocs/profiles/views.py
@@ -68,7 +68,7 @@ def get_success_url(self):
68
return reverse('homepage')
69
70
71
-class BaseProfileDetail(DetailView):
+class ProfileDetailBase(DetailView):
72
73
model = User
74
template_name = 'profiles/public/profile_detail.html'
@@ -82,7 +82,7 @@ def get_context_data(self, **kwargs):
82
83
class ProfileDetail(SettingsOverrideObject):
84
85
- _default_class = BaseProfileDetail
+ _default_class = ProfileDetailBase
86
87
88
class AccountAdvertisingEdit(PrivateViewMixin, SuccessMessageMixin, UpdateView):
0 commit comments