What's the point of using template structure like this:
templates/
app/
article_view.html # or view_article.html
category_view.html
vs
templates/
app/
article/
view.html
category/
view.html
It's easier to find particular template with second approach, but I almost don't see any apps using it. Why?