Tagged Questions
12
votes
2answers
1k views
How to re-use a reusable app in Django
Hello Django experts
I am trying to create my first site in Django and as I'm looking for example apps out there to draw inspiration from, I constantly stumble upon a term called "reusable apps".
I ...
3
votes
3answers
135 views
How to avoid duplicate models in django project?
i'm learning django so i've many questions, and one is how i can reuse a model? i mean the models live in the application folder, but some models are exactly the same between two differents ...
2
votes
2answers
202 views
Set django-notification to be opt in rather than the default of opt out
I'm using django-notification to allow my users to opt out of certain alerts I generate in my web-application.
By default when I create a new notice type it is enabled rather than disabled In the ...
0
votes
1answer
87 views
What am I doing wrong with reusable Django apps?
Almost always when I try to use a re-usable django app, I end up doing a lot of integration work and/or the end result is really messy.
A common, simpler case is sending confirmation messages (with ...
0
votes
1answer
256 views
django reusable template code
So as I am architecting my project, I'm thinking I must be doing something wrong. Some pieces of template code are reusable that makes me want to extract the code out of the template, but I can't ...