]> git.parisson.com Git - diggersdigest.git/commitdiff
add step confirmation, fix TZ and then new order
authorGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Thu, 24 Sep 2015 15:22:56 +0000 (17:22 +0200)
committerGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Thu, 24 Sep 2015 15:22:56 +0000 (17:22 +0200)
app/diggersdigest/settings.py

index 13d9b8b79ed3c934241ae754c42c390518c3267e..a6a2f6738a5c4c27fb208b41fd0c357354b05883 100644 (file)
@@ -123,12 +123,12 @@ SHOP_CHECKOUT_STEPS_SPLIT = True
 
 # If True, the checkout process has a final confirmation step before
 # completion.
-SHOP_CHECKOUT_STEPS_CONFIRMATION = True
+SHOP_CHECKOUT_STEPS_CONFIRMATION = True
 
 # Controls the formatting of monetary values accord to the locale
 # module in the python standard library. If an empty string is
 # used, will fall back to the system's locale.
-#SHOP_CURRENCY_LOCALE = ''
+SHOP_CURRENCY_LOCALE = 'fr_FR.UTF-8'
 
 # Dotted package path and name of the function that
 # is called on submit of the billing/shipping checkout step. This
@@ -176,6 +176,9 @@ MIGRATION_MODULES = {
     "blog": "diggersdigest.migrations.blog"
 }
 
+
+# PAYPAL
+
 # USE or EXTEND the custom callback-uuid form
 SHOP_CHECKOUT_FORM_CLASS = 'payments.multipayments.forms.base.CallbackUUIDOrderForm'
 
@@ -233,7 +236,7 @@ ALLOWED_HOSTS = ['*']
 # timezone as the operating system.
 # If running in a Windows environment this must be set to the same as your
 # system time zone.
-TIME_ZONE = 'UTC'
+TIME_ZONE = 'Europe/Paris'
 
 # If you set this to True, Django will use timezone-aware datetimes.
 USE_TZ = True