19 lines
411 B
Python
19 lines
411 B
Python
|
from django.shortcuts import render
|
||
|
|
||
|
|
||
|
from django.urls import reverse_lazy
|
||
|
from django.views.generic.edit import CreateView, DeleteView, UpdateView
|
||
|
from .models import Assignment
|
||
|
|
||
|
|
||
|
class AssignmentCreateView(CreateView):
|
||
|
model = Assignment
|
||
|
fields = [
|
||
|
'full_name',
|
||
|
'email',
|
||
|
'place_of_residence',
|
||
|
'repository',
|
||
|
'coverage',
|
||
|
'attestation_of_copyright',
|
||
|
]
|