Skip to content
Snippets Groups Projects
Commit dc74dd79 authored by Dorian Lesbre's avatar Dorian Lesbre
Browse files

Added site_settings app

parent df1cb33d
No related branches found
No related tags found
No related merge requests found
......@@ -3,3 +3,4 @@ from django.apps import AppConfig
class AccountsConfig(AppConfig):
name = 'accounts'
verbose_name = "Comptes utilisateurs"
......@@ -3,3 +3,4 @@ from django.apps import AppConfig
class HomeConfig(AppConfig):
name = 'home'
verbose_name = 'site principal'
......@@ -39,7 +39,8 @@ INSTALLED_APPS = [
'django.contrib.staticfiles',
'django.contrib.sitemaps',
'home.apps.HomeConfig',
'accounts',
'accounts.apps.AccountsConfig',
'site_settings.apps.SiteSettingsConfig',
]
MIDDLEWARE = [
......
from django.contrib import admin
# Register your models here.
from django.apps import AppConfig
class SiteSettingsConfig(AppConfig):
name = 'site_settings'
from django.db import models
# Create your models here.
from django.test import TestCase
# Create your tests here.
from django.shortcuts import render
# Create your views here.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment