I'm thinking of using mezzanine but a client wants a real time update of orders.
http://swampdragon.net/documentation/quick-start/ from django.db import modelsfrom swampdragon.models import SelfPublishModelfrom .serializers import FooSerializer class Foo(SelfPublishModel, models.Model): serializer_class = FooSerializer text = models.CharField(max_length=100) Got this off the swampdragon page and they require an addition of SelfPublishModel to any object that you need realtime support. Any idea how to do this with cartridge? Best regarsd, Andrew -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
