We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently there is a mix of function and class-based views. We should ship with CBVs to allow for greater extensibility.
folder_create
FolderCreateView(LoginRequiredMixin, CreateView)
folder_detail
FolderDetailView(LoginRequiredMixin, DetailView)
document_create
DocumentCreateView(LoginRequiredMixin, CreateView)
document_detail
DocumentDetailView(LoginRequiredMixin, DetailView)
document_download
DocumentDownloadView(LoginRequiredMixin, View)
DetailView
folder_share
FolderShareView(LoginRequiredMixin, View)
document_delete
DocumentDeleteView(LoginRequiredMixin, DeleteView)
The text was updated successfully, but these errors were encountered:
@paltman Is this issue now resolved?
Sorry, something went wrong.
No branches or pull requests
Currently there is a mix of function and class-based views. We should ship with CBVs to allow for greater extensibility.
folder_create
=>FolderCreateView(LoginRequiredMixin, CreateView)
folder_detail
=>FolderDetailView(LoginRequiredMixin, DetailView)
document_create
=>DocumentCreateView(LoginRequiredMixin, CreateView)
document_detail
=>DocumentDetailView(LoginRequiredMixin, DetailView)
document_download
=>DocumentDownloadView(LoginRequiredMixin, View)
(but maybe aDetailView
)folder_share
=>FolderShareView(LoginRequiredMixin, View)
(but maybe aDetailView
)document_delete
=>DocumentDeleteView(LoginRequiredMixin, DeleteView)
The text was updated successfully, but these errors were encountered: