매출 대시보드 사이드바 링크 활성화

- base.html에서 매출 대시보드 링크를 showComingSoon()에서 실제 경로로 변경
- href="#" onclick="showComingSoon('매출 대시보드')" → href="{{ url_for('revenue_dashboard') }}"
- 이제 사이드바에서 매출 대시보드에 정상 접근 가능
- 구독 서비스 관리와 매출 대시보드 모두 완전 구현 완료

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
시골약사 2025-09-11 20:02:27 +09:00
parent 6116f3fd15
commit 2cfe37fd53

View File

@ -208,7 +208,7 @@
</a> </a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link {% if request.endpoint and 'revenue' in request.endpoint %}active{% endif %}" href="#" onclick="showComingSoon('매출 대시보드')"> <a class="nav-link {% if request.endpoint and 'revenue' in request.endpoint %}active{% endif %}" href="{{ url_for('revenue_dashboard') }}">
<i class="fas fa-chart-pie text-warning"></i> 매출 대시보드 <i class="fas fa-chart-pie text-warning"></i> 매출 대시보드
</a> </a>
</li> </li>