from django.shortcuts import render, get_object_or_404, redirect from django.contrib.auth.decorators import login_required from django.views.generic import ListView, DetailView, CreateView, UpdateView, DeleteView import django_tables2 as tables from .models import Customer, Deal, Lead, Contact from .forms import DealForm from django_tables2 import SingleTableView class DealTable(tables.Table): class Meta: model = Deal template_name = "django_tables2/bootstrap5.html" fields = ("title", "stage") class DealListView(SingleTableView): model = Deal table_class = DealTable template_name = "crm/deal_list.html"