Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django2-project-template
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django2-project-template
Commits
0edefa3d
Unverified
Kaydet (Commit)
0edefa3d
authored
May 08, 2018
tarafından
Uğur Özyılmazel
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix: application/__init__.py generation
üst
8e19dafa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
README.md
README.md
+5
-1
baseapp_create_app.py
...cations/baseapp/management/commands/baseapp_create_app.py
+8
-0
No files found.
README.md
Dosyayı görüntüle @
0edefa3d
![
Django
](
https://img.shields.io/badge/django-2.0.5-green.svg
)
![
Version
](
https://img.shields.io/badge/version-0.2.
1
-yellow.svg
)
![
Version
](
https://img.shields.io/badge/version-0.2.
2
-yellow.svg
)
# Django Project Starter Template
...
...
@@ -1509,6 +1509,10 @@ This project is licensed under MIT
## Change Log
**2018-05-08**
-
Fix:
`application/__init__.py`
**2018-05-07**
-
Automatic Django Admin registration changed to:
`@admin.register({model_name})`
style.
...
...
applications/baseapp/management/commands/baseapp_create_app.py
Dosyayı görüntüle @
0edefa3d
...
...
@@ -9,9 +9,12 @@ from django.core.management.base import (
BaseCommand
,
CommandError
,
)
from
django.utils.text
import
capfirst
from
baseapp.management.template_structures
import
application
as
application_templates
TEMPLATE_MODELS_INIT
=
"""# from .MODEL_FILE import *
"""
...
...
@@ -20,6 +23,9 @@ TEMPLATE_ADMIN_INIT = """# from .ADMIN_FILE import *
"""
TEMPLATE_APP_INIT
=
"""default_app_config = '{app_name}.apps.{app_name_capfirst}Config'
"""
APP_DIR_STRUCTURE
=
{
'packages'
:
[
dict
(
name
=
'admin'
,
files
=
[
...
...
@@ -34,6 +40,7 @@ APP_DIR_STRUCTURE = {
dict
(
name
=
'index.html'
,
render
=
application_templates
.
TEMPLATE_HTML
),
],
'files'
:
[
dict
(
name
=
'__init__.py'
,
render
=
TEMPLATE_APP_INIT
),
dict
(
name
=
'apps.py'
,
render
=
application_templates
.
TEMPLATE_APPS
),
dict
(
name
=
'urls.py'
,
render
=
application_templates
.
TEMPLATE_URLS
),
dict
(
name
=
'views.py'
,
render
=
application_templates
.
TEMPLATE_VIEWS
),
...
...
@@ -91,6 +98,7 @@ class Command(BaseCommand):
render_params
=
dict
(
app_name_title
=
app_name
.
title
(),
app_name
=
app_name
,
app_name_capfirst
=
capfirst
(
app_name
),
)
self
.
mkdir
(
new_application_dir
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment