Application de gestion de courses avec génération de dossards avec QRcode et scan des coureurs à l'arrivée.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

26 lines
913 B

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>CrossApp</title>
{% load static %}
<!-- SB Admin 2 Bootstrap CSS -->
<link href="{% static 'sb-admin-2/sb-admin-2.min.css' %}" rel="stylesheet">
<!-- Custom styles -->
{% block extra_css %}{% endblock %}
</head>
<body id="page-top">
<!-- Page Wrapper -->
<div id="wrapper">
{% block content %}{% endblock %}
</div>
<!-- jQuery (nécessaire pour Bootstrap) -->
<script src="{% static 'jquery/jquery-3.6.0.min.js' %}"></script>
<!-- Bootstrap core JavaScript -->
<script src="{% static 'bootstrap/bootstrap.bundle.min.js' %}"></script>
<!-- SB Admin 2 JS -->
<script src="{% static 'sb-admin-2/sb-admin-2.min.js' %}"></script>
{% block extra_js %}{% endblock %}
</body>
</html>