11 lines
321 B
Python
11 lines
321 B
Python
from django.shortcuts import render
|
|
|
|
from django.views.generic.edit import CreateView, UpdateView, DeleteView
|
|
from rota.forms import UserRotaDetailForm
|
|
|
|
from rota.models import UserRotaDetail
|
|
# Create your views here.
|
|
|
|
class UserRotaDetailUpdate(UpdateView):
|
|
model = UserRotaDetail
|
|
form_class = UserRotaDetailForm |