Is it possible to apply Wagtail CMS to my existing Django project?
I recently found wagtail, which is a very cool Django CMS library. I tried to use it following its documentation, but its installing documentation is based on starting-over Django project.
I'm using ReactJS for frontend and Django as API backend. I was wondering if it's possible for me to apply wagtail to my existing Django project.
django wagtail
add a comment |
I recently found wagtail, which is a very cool Django CMS library. I tried to use it following its documentation, but its installing documentation is based on starting-over Django project.
I'm using ReactJS for frontend and Django as API backend. I was wondering if it's possible for me to apply wagtail to my existing Django project.
django wagtail
add a comment |
I recently found wagtail, which is a very cool Django CMS library. I tried to use it following its documentation, but its installing documentation is based on starting-over Django project.
I'm using ReactJS for frontend and Django as API backend. I was wondering if it's possible for me to apply wagtail to my existing Django project.
django wagtail
I recently found wagtail, which is a very cool Django CMS library. I tried to use it following its documentation, but its installing documentation is based on starting-over Django project.
I'm using ReactJS for frontend and Django as API backend. I was wondering if it's possible for me to apply wagtail to my existing Django project.
django wagtail
django wagtail
edited Nov 22 '18 at 21:03
allcaps
7,5932143
7,5932143
asked Nov 21 '18 at 23:49
JayJay
465113
465113
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Documentation for integrating Wagtail into an existing Django project is here: http://docs.wagtail.io/en/stable/getting_started/integrating_into_django.html
Thank you for the link. It let me access wagtail CMS on my existing Django app. However, I don't see my models on the CMS which are the models that I can see on my default Django admin. Are they not compatible each other?
– Jay
Nov 22 '18 at 0:23
1
No, the Wagtail admin backend is a separate thing from Django admin. The Modeladmin module is one option for making your Django models available within Wagtail admin, though: docs.wagtail.io/en/stable/reference/contrib/modeladmin/…
– gasman
Nov 22 '18 at 0:44
You should use Wagtail's admin-pages to do "all Wagtail things." Don't monkey around with them in the Django admin. Be sure that your URL-patterns occur before any Wagtail patterns (and, that they are distinct from them). Otherwise, "Wagtail's just a Django app," and it works quite well. (I've also used Peregrine, a dedicated blog-app, simultaneously with Wagtail.) The beauty of Django is that you have ... choices.
– Mike Robinson
Nov 22 '18 at 16:09
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53422040%2fis-it-possible-to-apply-wagtail-cms-to-my-existing-django-project%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Documentation for integrating Wagtail into an existing Django project is here: http://docs.wagtail.io/en/stable/getting_started/integrating_into_django.html
Thank you for the link. It let me access wagtail CMS on my existing Django app. However, I don't see my models on the CMS which are the models that I can see on my default Django admin. Are they not compatible each other?
– Jay
Nov 22 '18 at 0:23
1
No, the Wagtail admin backend is a separate thing from Django admin. The Modeladmin module is one option for making your Django models available within Wagtail admin, though: docs.wagtail.io/en/stable/reference/contrib/modeladmin/…
– gasman
Nov 22 '18 at 0:44
You should use Wagtail's admin-pages to do "all Wagtail things." Don't monkey around with them in the Django admin. Be sure that your URL-patterns occur before any Wagtail patterns (and, that they are distinct from them). Otherwise, "Wagtail's just a Django app," and it works quite well. (I've also used Peregrine, a dedicated blog-app, simultaneously with Wagtail.) The beauty of Django is that you have ... choices.
– Mike Robinson
Nov 22 '18 at 16:09
add a comment |
Documentation for integrating Wagtail into an existing Django project is here: http://docs.wagtail.io/en/stable/getting_started/integrating_into_django.html
Thank you for the link. It let me access wagtail CMS on my existing Django app. However, I don't see my models on the CMS which are the models that I can see on my default Django admin. Are they not compatible each other?
– Jay
Nov 22 '18 at 0:23
1
No, the Wagtail admin backend is a separate thing from Django admin. The Modeladmin module is one option for making your Django models available within Wagtail admin, though: docs.wagtail.io/en/stable/reference/contrib/modeladmin/…
– gasman
Nov 22 '18 at 0:44
You should use Wagtail's admin-pages to do "all Wagtail things." Don't monkey around with them in the Django admin. Be sure that your URL-patterns occur before any Wagtail patterns (and, that they are distinct from them). Otherwise, "Wagtail's just a Django app," and it works quite well. (I've also used Peregrine, a dedicated blog-app, simultaneously with Wagtail.) The beauty of Django is that you have ... choices.
– Mike Robinson
Nov 22 '18 at 16:09
add a comment |
Documentation for integrating Wagtail into an existing Django project is here: http://docs.wagtail.io/en/stable/getting_started/integrating_into_django.html
Documentation for integrating Wagtail into an existing Django project is here: http://docs.wagtail.io/en/stable/getting_started/integrating_into_django.html
answered Nov 21 '18 at 23:58
gasmangasman
9,9941425
9,9941425
Thank you for the link. It let me access wagtail CMS on my existing Django app. However, I don't see my models on the CMS which are the models that I can see on my default Django admin. Are they not compatible each other?
– Jay
Nov 22 '18 at 0:23
1
No, the Wagtail admin backend is a separate thing from Django admin. The Modeladmin module is one option for making your Django models available within Wagtail admin, though: docs.wagtail.io/en/stable/reference/contrib/modeladmin/…
– gasman
Nov 22 '18 at 0:44
You should use Wagtail's admin-pages to do "all Wagtail things." Don't monkey around with them in the Django admin. Be sure that your URL-patterns occur before any Wagtail patterns (and, that they are distinct from them). Otherwise, "Wagtail's just a Django app," and it works quite well. (I've also used Peregrine, a dedicated blog-app, simultaneously with Wagtail.) The beauty of Django is that you have ... choices.
– Mike Robinson
Nov 22 '18 at 16:09
add a comment |
Thank you for the link. It let me access wagtail CMS on my existing Django app. However, I don't see my models on the CMS which are the models that I can see on my default Django admin. Are they not compatible each other?
– Jay
Nov 22 '18 at 0:23
1
No, the Wagtail admin backend is a separate thing from Django admin. The Modeladmin module is one option for making your Django models available within Wagtail admin, though: docs.wagtail.io/en/stable/reference/contrib/modeladmin/…
– gasman
Nov 22 '18 at 0:44
You should use Wagtail's admin-pages to do "all Wagtail things." Don't monkey around with them in the Django admin. Be sure that your URL-patterns occur before any Wagtail patterns (and, that they are distinct from them). Otherwise, "Wagtail's just a Django app," and it works quite well. (I've also used Peregrine, a dedicated blog-app, simultaneously with Wagtail.) The beauty of Django is that you have ... choices.
– Mike Robinson
Nov 22 '18 at 16:09
Thank you for the link. It let me access wagtail CMS on my existing Django app. However, I don't see my models on the CMS which are the models that I can see on my default Django admin. Are they not compatible each other?
– Jay
Nov 22 '18 at 0:23
Thank you for the link. It let me access wagtail CMS on my existing Django app. However, I don't see my models on the CMS which are the models that I can see on my default Django admin. Are they not compatible each other?
– Jay
Nov 22 '18 at 0:23
1
1
No, the Wagtail admin backend is a separate thing from Django admin. The Modeladmin module is one option for making your Django models available within Wagtail admin, though: docs.wagtail.io/en/stable/reference/contrib/modeladmin/…
– gasman
Nov 22 '18 at 0:44
No, the Wagtail admin backend is a separate thing from Django admin. The Modeladmin module is one option for making your Django models available within Wagtail admin, though: docs.wagtail.io/en/stable/reference/contrib/modeladmin/…
– gasman
Nov 22 '18 at 0:44
You should use Wagtail's admin-pages to do "all Wagtail things." Don't monkey around with them in the Django admin. Be sure that your URL-patterns occur before any Wagtail patterns (and, that they are distinct from them). Otherwise, "Wagtail's just a Django app," and it works quite well. (I've also used Peregrine, a dedicated blog-app, simultaneously with Wagtail.) The beauty of Django is that you have ... choices.
– Mike Robinson
Nov 22 '18 at 16:09
You should use Wagtail's admin-pages to do "all Wagtail things." Don't monkey around with them in the Django admin. Be sure that your URL-patterns occur before any Wagtail patterns (and, that they are distinct from them). Otherwise, "Wagtail's just a Django app," and it works quite well. (I've also used Peregrine, a dedicated blog-app, simultaneously with Wagtail.) The beauty of Django is that you have ... choices.
– Mike Robinson
Nov 22 '18 at 16:09
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53422040%2fis-it-possible-to-apply-wagtail-cms-to-my-existing-django-project%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown