""" Reporting Module Blueprint. Provides consolidated reporting functionality: - Box.com report search and retrieval - HM QC report consolidation (from database) - Dashboard view with dual modes (parsed + embedded) - Export functionality (HTML, errors-only) """ from flask import Blueprint # Create blueprint reporting_bp = Blueprint( 'reporting', __name__, template_folder='templates', static_folder='static', static_url_path='/reporting/static', url_prefix='/reporting' ) # Import routes after blueprint creation to avoid circular imports from . import routes