misc: remove admin app (#63224)

This commit is contained in:
Frédéric Péters 2022-04-19 18:00:45 +02:00
parent 033a6a79f8
commit 9e22b36926
3 changed files with 0 additions and 29 deletions

View File

@ -50,7 +50,6 @@ ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',

View File

@ -16,13 +16,11 @@
from django.conf import settings
from django.conf.urls import include, url
from django.contrib import admin
from . import views
urlpatterns = [
url(r'^$', views.homepage, name='homepage'),
url(r'^admin/', admin.site.urls),
url(r'^accounts/login/$', views.login, name='auth_login'),
url(r'^accounts/logout/$', views.logout, name='auth_logout'),
url(r'^manage/menu.json$', views.menu_json, name='menu-json'),

View File

@ -1,26 +0,0 @@
# bijoe - BI dashboard
# Copyright (C) 2015 Entr'ouvert
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from django.contrib import admin
from . import models
class VisualizationAdmin(admin.ModelAdmin):
list_display = ['name']
admin.site.register(models.Visualization, VisualizationAdmin)