I'm trying to create some custom order views in the Admin area similar to the 'Orders In Process' area.
I am able to properly create the list that is displayed on the admin root page, my problem is creating the URI that will show the desired orders in the '/admin/shop/order/?' page. I am following the patterns that are in order_sidebar.html and have some working, but I'm having trouble with the more complex ones. For example, I want to display all orders that have a status of Billed, New or In Process. The template tag to generate this list is pretty simple, 'orders = Order.objects.filter( status__in=["Billed","New","In Process"])' I'm having trouble translating that to the proper search URI. Currently I have 'admin/shop/order/?status__in=[In%20Process,New,Billed]' but for some reason that only shows the 'New' orders, not the other two. (And yes, there are orders in the table that are Billed and In Process). I'm fairly new to python/Django/Satchmo, so forgive me if this isn't the place to ask. -- You received this message because you are subscribed to the Google Groups "Satchmo users" group. To view this discussion on the web visit https://groups.google.com/d/msg/satchmo-users/-/dt-pKp47LZQJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/satchmo-users?hl=en.
