add initial homemanager gui

This commit is contained in:
Alejandro Diaz 2023-09-11 00:07:53 -06:00
parent 5e6f8bbb8f
commit 9b0e431458
15 changed files with 284 additions and 0 deletions

0
ui/main/__init__.py Normal file
View file

3
ui/main/admin.py Normal file
View file

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

6
ui/main/apps.py Normal file
View file

@ -0,0 +1,6 @@
from django.apps import AppConfig
class MainConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'main'

View file

3
ui/main/models.py Normal file
View file

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

View file

@ -0,0 +1,8 @@
{% extends "base.html" %}
{% block title %} Scholar Clubs {% endblock title%}
{% block content %}
<div class="jumbotron">
<h1 class="display-4">Welcome</h1>
</div>
{% endblock content %}

3
ui/main/tests.py Normal file
View file

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
ui/main/views.py Normal file
View file

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.