add initial homemanager gui
This commit is contained in:
parent
5e6f8bbb8f
commit
9b0e431458
15 changed files with 284 additions and 0 deletions
0
ui/main/__init__.py
Normal file
0
ui/main/__init__.py
Normal file
3
ui/main/admin.py
Normal file
3
ui/main/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
6
ui/main/apps.py
Normal file
6
ui/main/apps.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class MainConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'main'
|
0
ui/main/migrations/__init__.py
Normal file
0
ui/main/migrations/__init__.py
Normal file
3
ui/main/models.py
Normal file
3
ui/main/models.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.db import models
|
||||
|
||||
# Create your models here.
|
8
ui/main/templates/home.html
Normal file
8
ui/main/templates/home.html
Normal 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
3
ui/main/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
ui/main/views.py
Normal file
3
ui/main/views.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
Loading…
Add table
Add a link
Reference in a new issue