django-machina icon indicating copy to clipboard operation
django-machina copied to clipboard

Forum Index redirect

Open YoomamaFTW opened this issue 5 years ago • 1 comments

I'm using machina's built-in forum index and renamed the machina-forum-name. When I click on the name when running project, I'm simply returned to the forum instead of my actual index.html. Is there any way to fix that in the settings or do I need to override the machina template? urlpatterns = [ path('forum/', include(machina_urls)), path('', include('app.urls')) ] And really, in this case, am I allowed to edit the machina templates (and css) directly? Would make life 100x easier.

YoomamaFTW avatar Apr 21 '19 13:04 YoomamaFTW

django-machina uses django templates, so it is possible to override board_base.html (I believe you are referring to navbar-brand link on this template)

Just copy that exact file board_base.html to your project-level templates directory, and do your changes there.

rainulf avatar Nov 27 '19 05:11 rainulf