politikorama/app/controller/admin/__init__.py

15 lines
561 B
Python

# encoding: utf-8
from app.controller.admin.country import ImportCountryView
from app.controller.admin.entity import ImportEntityView
from app.controller.admin.membership import ImportMembershipView
from app.controller.admin.representative import ImportRepresentativeView
admin_routes = (
(ImportCountryView, "Countries", "countries", "Import"),
(ImportEntityView, "Entities", "entities", "Import"),
(ImportMembershipView, "Memberships", "memberships", "Import"),
(ImportRepresentativeView, "Representatives", "representatives", "Import"),
)