Remove has_confirmed_list from subscription page. Fix #23

This commit is contained in:
Gabriel Augendre 2018-06-03 16:35:40 +02:00
parent 0a93b93a7e
commit a41c987193

View file

@ -14,7 +14,7 @@ logger = logging.getLogger(__name__)
class HomePageView(CreateView):
model = Teacher
fields = '__all__'
fields = ['first_name', 'last_name', 'phone_number', 'email']
template_name = 'manuels/home_page.html'
def get(self, request, *args, **kwargs):