Add email template for request status update, fix admin view for request unit view, and add initial app for questionnaires

This commit is contained in:
Keannu Christian Bernasol 2024-11-24 02:56:36 +08:00
parent ba19412d31
commit 8bd8df9042
15 changed files with 79 additions and 7 deletions

View file

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

View file

@ -0,0 +1,6 @@
from django.apps import AppConfig
class QuestionnairesConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "questionnaires"

View file

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

View file

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