Bo

Results 173 issues of Bo

Currently, disapproved posts are deleted, which does not allow posters to improve the posts and re-publish This PR allows `Post.approved` to have an initial `None` (unknown) status, so that only...

Just checking if I have missed something obvious, is is true that `reply` in machina always replies to the topic, not particular post? In another word, 1. how can I...

I override `forum_conversation`, everything worked fine until I changed ```python INSTALLED_APPS = [ 'myapp.forum_conversation' ] ``` to ```python INSTALLED_APPS = [ 'myapp.forum_conversation.apps.ForumConversationAppConfig' ] ``` because https://github.com/ellmetha/django-machina/blob/d60dfb3a72e234c7823f69a7f0f46224af8604c7/machina/core/loading.py#L101-L109 does not consider this...

When I send notification to a poster and I would like to include a link to the post itself. However, there is no `get_absolute_url` defined for the `Topic` or `Post`...

What is the recommended method to add extra fields like `tags` from `django-taggit` to Spirit models such as `Topic` or `Comment`?

Where do we expect the page to scroll to when we have `anchor` specified in `href` and `hx-get`? For example ```html ``` should scroll to `#target`. Where does ```html ```...

I am trying to implement inline editing for some elements following this [click-to-edit example](https://htmx.org/examples/click-to-edit/). My form is quite simple so instead of retrieving the form from the server, I am...

I will prepare a test case if this is not a known problem. I have a ```html ``` which works well when the `` is replaced by some regular ``....

I have an application with ``` ``` where the `page-content` is replaced with another page using `hx-get` when users navigate through pages through a menu. I get errors from time...

**Describe the bug** When a page with dropdown page is loaded, the dropdown menu displays and hides quickly. The effect is clear on a slow machine and can be captured...