Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class DetailProfileView(views.DetailView):
- queryset = Profile.objects.all()
- template_name = 'profiles/profile-details.html'
- def get_object(self, queryset=None):
- return get_profile()
- class DeleteProfileView(views.DeleteView):
- queryset = Profile.objects.all()
- template_name = 'profiles/profile-delete.html'
- def get_object(self, queryset=None):
- return get_profile()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement