mirror of
https://github.com/Balshgit/public.git
synced 2025-09-11 18:00:42 +03:00
34 lines
1.2 KiB
HTML
34 lines
1.2 KiB
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Celery Progress Demo</title>
|
|
<meta name="Celery Progress Demo" content="" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<!-- Bootstrap CSS -->
|
|
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body>
|
|
{% block demo %}
|
|
{% endblock %}
|
|
<!-- JQuery -->
|
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
|
<!-- Bootstrap JS -->
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
|
|
<!-- Celery Progress -->
|
|
<script src="{% static 'celery_progress/celery_progress.js' %}"></script>
|
|
|
|
{% block progress_bar_js %}
|
|
{% endblock progress_bar_js %}
|
|
<div class="container text-center" style="padding-top: 20px;">
|
|
{{ message }}
|
|
{% for repo, stars in data.items %}
|
|
<br>
|
|
{{ repo }} {{ stars }}
|
|
{% endfor %}
|
|
</div>
|
|
</body>
|
|
</html>
|