# encoding: utf-8 from app.controller.admin.importer import (ImportAddressView, ImportContactView, ImportCountryView, ImportDecisionView, ImportEntityView, ImportMatterView, ImportMembershipView, ImportRecommendationView, ImportRepresentativeView, ImportRoleView, ImportStanceView, ImportTypeView) admin_routes = ( (ImportAddressView, "Addresses", "addresses", "Import"), (ImportContactView, "Contacts", "contacts", "Import"), (ImportCountryView, "Countries", "countries", "Import"), (ImportDecisionView, "Decisions", "decisions", "Import"), (ImportEntityView, "Entities", "entities", "Import"), (ImportMatterView, "Matters", "matters", "Import"), (ImportMembershipView, "Memberships", "memberships", "Import"), (ImportRecommendationView, "Recommendations", "recommendations", "Import"), (ImportRepresentativeView, "Representatives", "representatives", "Import"), (ImportRoleView, "Roles", "roles", "Import"), (ImportStanceView, "Stances", "stances", "Import"), (ImportTypeView, "Types", "types", "Import"), )