Remove has_confirmed_list from subscription page. Fix #23
This commit is contained in:
parent
0a93b93a7e
commit
a41c987193
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
class HomePageView(CreateView):
|
class HomePageView(CreateView):
|
||||||
model = Teacher
|
model = Teacher
|
||||||
fields = '__all__'
|
fields = ['first_name', 'last_name', 'phone_number', 'email']
|
||||||
template_name = 'manuels/home_page.html'
|
template_name = 'manuels/home_page.html'
|
||||||
|
|
||||||
def get(self, request, *args, **kwargs):
|
def get(self, request, *args, **kwargs):
|
||||||
|
|
Loading…
Reference in a new issue