Skip to content
Snippets Groups Projects
views.py 219 B
Newer Older
  • Learn to ignore specific revisions
  • from django.views.generic import ListView
    
    from opentech.apply.funds.models import ApplicationSubmission
    
    
    class DashboardView(ListView):
        model = ApplicationSubmission
        template_name = 'dashboard/dashboard.html'