Total Complexity | 0 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 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 |