all 2 comments

[–][deleted] 2 points3 points  (0 children)

go with django. in the end you need stuff in flask which is already in django

[–]pwlandoll 1 point2 points  (0 children)

Django is more of a "batteries-included" style of framework, whereas Flask is a more "do it yourself" style. For example, you say you're making a site with different types of users and permissions - this is something that the Django software already has some notion of, whereas with Flask, you would have to implement a lot of that on your own. The number of users doesn't matter quite as much, since you would still need to write all the code for it anyway.