After reading through How do you divide your project into applications in Django? and Django documentation about applications I am still not sure whether I should make or not a new application for certain stuff.
Let's imagine I have a Website with the following sections: <Home> <Login> <Register> <My account>
.
Should all them be different applications? or should they be just one?
Also, imagine I include a section <Wiki>
but it is not very linked with the page (I mean, not the design but the content makes relation to it).
Would this be a new project or application?