mirror of
https://github.com/tjsga/studyguidebank.git
synced 2025-04-09 22:40:16 -04:00
9 lines
183 B
Python
9 lines
183 B
Python
import random
|
|
|
|
from django import http
|
|
from django.shortcuts import render, redirect, reverse, get_object_or_404
|
|
|
|
from .models import Subject, Course, Unit
|
|
# Create your views here.
|
|
|