initial commit

This commit is contained in:
2026-09-05 23:43:46 +03:00
commit 9c91b9bf10
5730 changed files with 768970 additions and 0 deletions
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+3
View File
@@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.
+5
View File
@@ -0,0 +1,5 @@
from django.apps import AppConfig
class CoreConfig(AppConfig):
name = 'apps.core'
View File
+3
View File
@@ -0,0 +1,3 @@
from django.db import models
# Create your models here.
+6
View File
@@ -0,0 +1,6 @@
{% extends "Baselayout.html" %}
{% load static %}
{% block title %}Index{% endblock %}
{% block content %}
Welcome to the Index Page!
{% endblock %}
+3
View File
@@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.
+6
View File
@@ -0,0 +1,6 @@
from django.urls import path
from . import views as v
urlpatterns = [
path('', v.IndexView.as_view(), name='index'),
]
+7
View File
@@ -0,0 +1,7 @@
from django.shortcuts import render
from django.views.generic import TemplateView, ListView
# Create your views here.
class IndexView(TemplateView):
template_name = "apps/core/index.html"