Changes ' to "

This commit is contained in:
Kristofers Solo 2023-03-27 09:23:17 +03:00
parent f3e4cb2652
commit 6dc7acbd7c
2 changed files with 6 additions and 6 deletions

View File

@ -2,5 +2,5 @@ from django.apps import AppConfig
class FossdbConfig(AppConfig): class FossdbConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField' default_auto_field = "django.db.models.BigAutoField"
name = 'fossdb' name = "fossdb"

View File

@ -1,17 +1,17 @@
"""OSSDB_web URL Configuration """FOSSDB_web URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see: The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/4.0/topics/http/urls/ https://docs.djangoproject.com/en/4.0/topics/http/urls/
Examples: Examples:
Function views Function views
1. Add an import: from my_app import views 1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home') 2. Add a URL to urlpatterns: path("", views.home, name="home")
Class-based views Class-based views
1. Add an import: from other_app.views import Home 1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') 2. Add a URL to urlpatterns: path("", Home.as_view(), name="home")
Including another URLconf Including another URLconf
1. Import the include() function: from django.urls import include, path 1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) 2. Add a URL to urlpatterns: path("blog/", include("blog.urls"))
""" """
from django.contrib import admin from django.contrib import admin
from django.urls import path from django.urls import path