Changeset - 960de87343fa
[Not reviewed]
0 1 0
Christopher Neugebauer - 8 years ago 2016-09-02 00:10:21
chrisjrn@gmail.com
oops
1 file changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
registrasion/staff_views.py
Show inline comments
...
 
@@ -16,6 +16,7 @@ from functools import wraps
 
from models import commerce
 
from models import inventory
 

	
 
from reporting.reports import get_all_reports
 
from reporting.reports import Report
 
from reporting.reports import report_view
 

	
...
 
@@ -26,7 +27,7 @@ def reports_list(request):
 

	
 
    reports = []
 

	
 
    for report in _all_report_views:
 
    for report in get_all_reports():
 
        reports.append({
 
            "name" : report.__name__,
 
            "url" : reverse(report),
0 comments (0 inline, 0 general)