Completed
Pull Request — master (#51)
by Paolo
06:34
created

zooma.views   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 5
dl 0
loc 15
rs 10
c 0
b 0
f 0
1
#!/usr/bin/env python3
2
# -*- coding: utf-8 -*-
3
"""
4
Created on Fri Sep 27 15:39:30 2019
5
6
@author: Paolo Cozzi <[email protected]>
7
"""
8
9
from django.views.generic import TemplateView
10
from django.contrib.auth.mixins import LoginRequiredMixin
11
12
13
class OntologiesReportView(LoginRequiredMixin, TemplateView):
14
    template_name = 'zooma/ontologies_report.html'
15