[mezzanine-users] Shout out to Mezzanine Gurus

2014-11-10 Thread Steve Hobden
Hey Mezzaniners,
I'm going to need a hand with a website so is anyone able to assist in 
providing paid support? Noobs need not apply as that role is already filled. 
Cheers
STEVE H

-- 
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 mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [mezzanine-users] Cartridge creating a product with a user defined price

2014-11-10 Thread Josh B
Nice, you also had to create a corresponding product, right?

On Monday, November 10, 2014 10:12:41 AM UTC-7, Josh Cartmell wrote:
>
> Hey Josh, that seems like a pretty good way to handle it.  I had once 
> dealt with allowing users to make donations to a site with Cartridge (not 
> purchasing products for the donation, just straight donations) and did this:
>
> def add_donation_item(cart, price, notes=None):"""Adds a donation to 
> the cart.  donation is a product variation"""item, created = 
> cart.items.get_or_create(sku=("DONATION-%s" % price), unit_price=price)if 
> created:item.description = "$%s Donation" % price
> item.unit_price = priceitem.url = "/shop/donate/"item.notes = 
> noteselse:item.notes += notesitem.quantity += 1item.save()
>
> In my case I didn't create a particular Donation objects, but I think 
> doing that makes things nicer/saner and I think it's a good approach.
>
> On Sun, Nov 9, 2014 at 1:18 AM, Josh B  > wrote:
>
>> I am creating a store that has normal products and it also has donation 
>> based products. With the donation products the user defines the price. 
>>
>> Here is where I am at so far and want to see if someone else has a better 
>> idea.
>>
>> I created an add_donation function that loads in the product details and 
>> creates a new Donation object where I set the price to the user defined 
>> price. This feels a little hacky to me but this might be the easiest way. 
>> Thoughts?
>>
>>
>> https://gist.github.com/joshbatchelor/dc093ff99b129297d488#file-gistfile1-txt
>>
>> Thanks.
>>
>> -- 
>> 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 mezzanine-use...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
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 mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [mezzanine-users] Rendering fields manually Mezzanine Forms

2014-11-10 Thread Stephen McDonald
A bit of Googling for how to do this with a regular Django form will yield
an answer - the form object in the code you showed is just a regular Django
form.

On Tue, Nov 11, 2014 at 7:33 AM, Ernesto Palafox 
wrote:

> Hi!
> I am working with mezzanine forms, and it works like charm, but i was
> wondering if i could render manually the fields on the template. I just
> want to put some headers between some fields, and make others two or three
> fields per row.
>
> ¿is it possible to access manually the fields instead of using "{%
> fields_for form %}" tag?
>
> Any advice on this would be appreciated!
>
> Thanks
>
> --
> 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 mezzanine-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Stephen McDonald
http://jupo.org

-- 
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 mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[mezzanine-users] Rendering fields manually Mezzanine Forms

2014-11-10 Thread Ernesto Palafox
Hi!
I am working with mezzanine forms, and it works like charm, but i was 
wondering if i could render manually the fields on the template. I just 
want to put some headers between some fields, and make others two or three 
fields per row. 

¿is it possible to access manually the fields instead of using "{% 
fields_for form %}" tag?

Any advice on this would be appreciated!

Thanks

-- 
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 mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [mezzanine-users] Cartridge creating a product with a user defined price

2014-11-10 Thread Josh Cartmell
Hey Josh, that seems like a pretty good way to handle it.  I had once dealt
with allowing users to make donations to a site with Cartridge (not
purchasing products for the donation, just straight donations) and did this:

def add_donation_item(cart, price, notes=None):"""Adds a
donation to the cart.  donation is a product variation"""item,
created = cart.items.get_or_create(sku=("DONATION-%s" % price),
unit_price=price)if created:item.description = "$%s
Donation" % priceitem.unit_price = priceitem.url =
"/shop/donate/"item.notes = noteselse:item.notes
+= notesitem.quantity += 1item.save()

In my case I didn't create a particular Donation objects, but I think doing
that makes things nicer/saner and I think it's a good approach.

On Sun, Nov 9, 2014 at 1:18 AM, Josh B 
wrote:

> I am creating a store that has normal products and it also has donation
> based products. With the donation products the user defines the price.
>
> Here is where I am at so far and want to see if someone else has a better
> idea.
>
> I created an add_donation function that loads in the product details and
> creates a new Donation object where I set the price to the user defined
> price. This feels a little hacky to me but this might be the easiest way.
> Thoughts?
>
>
> https://gist.github.com/joshbatchelor/dc093ff99b129297d488#file-gistfile1-txt
>
> Thanks.
>
> --
> 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 mezzanine-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.