Pastebin

Paste #25061: No description

< previous paste - next paste>

Pasted by Anonymous Coward

Download View as text

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"

New Paste


Do not write anything in this field if you're a human.

Go to most recent paste.