E-Voting Developer 8baabf528c feat: Implement Historique and Upcoming Votes pages with styling and data fetching
- Added HistoriquePage component to display user's voting history with detailed statistics and vote cards.
- Created UpcomingVotesPage component to show upcoming elections with a similar layout.
- Developed CSS styles for both pages to enhance visual appeal and responsiveness.
- Integrated API calls to fetch user's votes and upcoming elections.
- Added a rebuild script for Docker environment setup and data restoration.
- Created a Python script to populate the database with sample data for testing.
2025-11-06 05:12:03 +01:00

19 lines
402 B
Python
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""
SEED SCRIPT SUPPRIMÉ
La base de données n'est plus peuplée automatiquement.
Seul l'utilisateur paul.roost@epita.fr existe en base.
Pour ajouter des données:
- Utilisez l'API REST
- Ou des scripts SQL personnalisés
"""
def main():
print(" Ce script a été supprimé.")
print("La base de données est maintenant gérée manuellement.")
if __name__ == "__main__":
main()