Y
Y
Yegor_KHV2016-07-14 09:32:05
Django
Yegor_KHV, 2016-07-14 09:32:05

How to add (extend site functionality) "blog" to a finished Django project?

Добрый день тостеры, возникла небольшая трудность с фреймворком django.
Предыстория : работаю (работал?) на js. html. php, joomla, css, пью кофе, ем лапшу. Попало задание в готовый проект на django вставить еще один блог и комментарии к статьям, подключился к ssh, cразобрался с virtlenv, создал в проекте приложение артикл - а как теперь его подключить? как происходит работа приложений в проекте?? Ткните носом в логику работы или зацепочку,
P.S понравился django, хотя и в python ноль, тем более linux пришлось под изучить ( люблю linux )

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Vladimir Kuts, 2016-07-14
@Yegor_KHV

In settings.py in INSTALLED_APPS add a line with the name of your application.
Then do the migrations

manage.py makemigrations
manage.py migrate

Then, as usual... - in urls.py - the path and the corresponding handler from views.py
In views.py - the implementation of the logic for working with your models from models.py
...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question