Create shell django app for course duration feature
This commit is contained in:
committed by
Matthew Piatetsky
parent
969728874b
commit
4642efbf08
@@ -1161,6 +1161,8 @@ INSTALLED_APPS = [
|
||||
|
||||
# API Documentation
|
||||
'rest_framework_swagger',
|
||||
|
||||
'openedx.features.course_duration_limits',
|
||||
]
|
||||
|
||||
|
||||
|
||||
@@ -2282,6 +2282,7 @@ INSTALLED_APPS = [
|
||||
'openedx.features.learner_profile',
|
||||
'openedx.features.learner_analytics',
|
||||
'openedx.features.portfolio_project',
|
||||
'openedx.features.course_duration_limits',
|
||||
|
||||
'experiments',
|
||||
|
||||
|
||||
0
openedx/features/course_duration_limits/__init__.py
Normal file
0
openedx/features/course_duration_limits/__init__.py
Normal file
6
openedx/features/course_duration_limits/admin.py
Normal file
6
openedx/features/course_duration_limits/admin.py
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
||||
8
openedx/features/course_duration_limits/apps.py
Normal file
8
openedx/features/course_duration_limits/apps.py
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class CourseDurationLimitsConfig(AppConfig):
|
||||
name = 'openedx.features.course_duration_limits'
|
||||
6
openedx/features/course_duration_limits/models.py
Normal file
6
openedx/features/course_duration_limits/models.py
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
6
openedx/features/course_duration_limits/tests.py
Normal file
6
openedx/features/course_duration_limits/tests.py
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
||||
6
openedx/features/course_duration_limits/views.py
Normal file
6
openedx/features/course_duration_limits/views.py
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
||||
Reference in New Issue
Block a user