Esteban C Borsani
Esteban C Borsani
> Do I have to go back and save each of them? No. Run `python manage.py rebuild_index`
it's more like a "resovled/unresolved". If a comment is flagged, the admin/mod should decide if they want to remove the comment, or do nothing, and marked the flag as closed....
Yep, and it's not coming back. If you want to try it either install it or try the one click Heroku deploy https://github.com/nitely/spirit-heroku On Wed., May 10, 2023, 2:48 a.m....
That's not so fresh in my mind. The css is all css grids and flexbox, so it should be doable with just css. This override seems to do something in...
I think there is no way to do that. If you share the DB between your site and Spirit, all users will be Spirit users. If you don't create a...
If you want to forbid some users from accessing the forum, you are better off creating a model with a OneToOneField to Django user model, and some `is_forum_allowed` field. Then...
ye, one way is monkey patching [this view](https://github.com/nitely/Spirit/blob/9a304a57de021108d9225b87f35ad6395d5d56d3/spirit/user/admin/views.py#L45C20-L45C20)
probably something like this in a custom app: ```python from spirit.user.admin import views org_index = views._index def new_index(request, queryset, template): return org_index(request, queryset.filter(custom_user__has_forum_access=True), template) views._index = new_index ``` Another way...
A user has to be subscribed to the topic to get a notification about a new comment. Unless it's a mention. There is no way to subscribe to a category...
If you want to find all topics talking about X then the current search is fine. Returning comments and searching on a single post is missing functionality. On Sun., Oct....