first commit

This commit is contained in:
2026-01-16 22:20:18 +03:00
commit 5d437e5e28
56 changed files with 4463 additions and 0 deletions

9
config/views.py Normal file
View File

@@ -0,0 +1,9 @@
# config/views.py
from django.http import HttpResponse
from django.shortcuts import render
def hello_world(request):
return HttpResponse("Hello, Bitcoin Monitor World!")
def dashboard(request):
return render(request, 'dashboard.html')