Skip to content

Commit

Permalink
reports
Browse files Browse the repository at this point in the history
  • Loading branch information
Rajan-007 committed Feb 9, 2025
1 parent 086af71 commit d214503
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 12 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,6 @@ local_settings.py
*.swo
Thumbs.db
ehthumbs.db

# Python compiled files
*.pyc
2 changes: 1 addition & 1 deletion templates/Profile/add_profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ <h1 class="text-3xl text-purple-500 font-bold text-center mb-6">Add Profile</h1>
<label for="membership_status" class="block text-sm font-medium text-gray-700">Membership Status:</label>
<select name="membership_status" id="membership_status" class="mt-1 border p-2 block w-full rounded-md focus:ring focus:ring-indigo-200">
<option value="Active">Active</option>
<option value="Not Active">Not Active</option>
<option value="Not Active">Inactive</option>
</select>
</div>
<div>
Expand Down
37 changes: 26 additions & 11 deletions templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -1399,17 +1399,32 @@ <h2 class="font-bold text-2xl">Victory <span class="bg-[#f84525] text-white px-2
</ul>
</li>
<li class="mb-1 group">
<a href="" class="flex font-semibold items-center py-2 px-4 text-gray-900 hover:bg-gray-950 hover:text-gray-100 rounded-md group-[.active]:bg-gray-800 group-[.active]:text-white group-[.selected]:bg-gray-950 group-[.selected]:text-gray-100 sidebar-dropdown-toggle">
<i class='bx bx-bar-chart-alt-2 mr-3 text-lg'></i>
<span class="text-sm">Reports</span>
<i class="ri-arrow-right-s-line ml-auto group-[.selected]:rotate-90"></i>
</a>
<ul class="pl-7 mt-2 hidden group-[.selected]:block">
<li class="mb-4">
<a href="" class="text-gray-900 text-sm flex items-center hover:text-[#f84525] before:contents-[''] before:w-1 before:h-1 before:rounded-full before:bg-gray-300 before:mr-3">Chapter</a>
</li>
</ul>
</li>
<a href="" class="flex font-semibold items-center py-2 px-4 text-gray-900 hover:bg-gray-950 hover:text-gray-100 rounded-md group-[.active]:bg-gray-800 group-[.active]:text-white group-[.selected]:bg-gray-950 group-[.selected]:text-gray-100 sidebar-dropdown-toggle">
<i class='bx bx-bar-chart-alt-2 mr-3 text-lg'></i>
<span class="text-sm">Reports</span>
<i class="ri-arrow-right-s-line ml-auto group-[.selected]:rotate-90"></i>
</a>
<ul class="pl-7 mt-2 hidden group-[.selected]:block">
<li class="mb-4">
<a href="{% url 'member_performance_report' %}" class="text-gray-900 text-sm flex items-center hover:text-[#f84525] before:contents-[''] before:w-1 before:h-1 before:rounded-full before:bg-gray-300 before:mr-3">Member Performance Report</a>
</li>
<li class="mb-4">
<a href="{% url 'chapter_meeting_report' %}" class="text-gray-900 text-sm flex items-center hover:text-[#f84525] before:contents-[''] before:w-1 before:h-1 before:rounded-full before:bg-gray-300 before:mr-3">Chapter Meeting Report</a>
</li>
<li class="mb-4">
<a href="{% url 'chapter_performance_report' %}" class="text-gray-900 text-sm flex items-center hover:text-[#f84525] before:contents-[''] before:w-1 before:h-1 before:rounded-full before:bg-gray-300 before:mr-3">Chapter Performance Report</a>
</li>
<li class="mb-4">
<a href="{% url 'region_performance_report' %}" class="text-gray-900 text-sm flex items-center hover:text-[#f84525] before:contents-[''] before:w-1 before:h-1 before:rounded-full before:bg-gray-300 before:mr-3">Region Performance Report</a>
</li>
<li class="mb-4">
<a href="{% url 'chapter_roster_report' %}" class="text-gray-900 text-sm flex items-center hover:text-[#f84525] before:contents-[''] before:w-1 before:h-1 before:rounded-full before:bg-gray-300 before:mr-3">Chapter Roster Report</a>
</li>
<li class="mb-4">
<a href="{% url 'training_sessions_report' %}" class="text-gray-900 text-sm flex items-center hover:text-[#f84525] before:contents-[''] before:w-1 before:h-1 before:rounded-full before:bg-gray-300 before:mr-3">Training Sessions Report</a>
</li>
</ul>
</li>
<li class="mb-1 group">
<a href="" class="flex font-semibold items-center py-2 px-4 text-gray-900 hover:bg-gray-950 hover:text-gray-100 rounded-md group-[.active]:bg-gray-800 group-[.active]:text-white group-[.selected]:bg-gray-950 group-[.selected]:text-gray-100">
<i class='bx bx-door-open mr-3 text-lg'></i> <!-- bx-door-open might be suitable for a portal -->
Expand Down

0 comments on commit d214503

Please sign in to comment.