Bo

Results 404 comments of Bo

I can confirm that `django-machina` does not support this feature. It is however possible to extend `Post` to support it. It is a lot of work but the following are...

I have implemented this, but for a private project. Essentially, what we did was 1. Overriding the field `approved` to a tri-status field ``` approved = models.BooleanField( null=True, default=None, db_index=True,...

I landed on this thread while looking at the whole machina/haystack issue. It is clear to me that haystack is no longer maintained and should be removed from machina. The...

I have done this with ```python @receiver(post_save, sender=Post) def identify_spam(sender, instance, **kwargs): ## search database for author activity and post similarity, if suspicious,... if spam: instance.delete() ```

[`django-file-form`](https://github.com/mbraak/django-file-form) provides AJAX uploads but needs change in both back and frontend of `django-machina`. It is doable thanks to the great flexibility of `django-machina` but the changes would be too...

Stripe.com will re-send failed events so maybe this issue can be safely ignored if it happens once in a while? On the other hand, if some of your events are...

https://github.com/nitely/Spirit/issues/96#issuecomment-175468844 seems to be closest existing discussion that I can find.

> Spirit does not aim to have overridable apps, you should be able to extend it So spirit did not allow adding additional fields to the `Topic` class, like what...

Say there is a "product" in my website that a `Topic` needs to promote. What you are suggesting is that 1. I create a `TopicThatRecommendsProduct` model that is one to...

Perhaps also offensive words such as `fxxk`?