Browse Source

Fix typo on subscRiption.

opi 8 years ago
parent
commit
67ee045102
3 changed files with 4 additions and 4 deletions
  1. 1 1
      README.md
  2. 1 1
      coin/offers/models.py
  3. 2 2
      coin/settings.py

+ 1 - 1
README.md

@@ -277,7 +277,7 @@ List of available settings in your `settings_local.py` file.
 - `EXTRA_TEMPLATE_DIRS`: See *Customizing templates*
 - `EXTRA_TEMPLATE_DIRS`: See *Customizing templates*
 - `LDAP_ACTIVATE`: See *LDAP*
 - `LDAP_ACTIVATE`: See *LDAP*
 - `MEMBER_MEMBERSHIP_INFO_URL`: Link to a page with information on how to become a member or pay the membership fee
 - `MEMBER_MEMBERSHIP_INFO_URL`: Link to a page with information on how to become a member or pay the membership fee
-- `SUBSCRIPTION_REFERENCE`: Pattern used to display a unique reference for any subsciption. Helpful for bank wire transfer identification
+- `SUBSCRIPTION_REFERENCE`: Pattern used to display a unique reference for any subscription. Helpful for bank wire transfer identification
 
 
 More information
 More information
 ================
 ================

+ 1 - 1
coin/offers/models.py

@@ -108,7 +108,7 @@ class OfferSubscription(models.Model):
     offer = models.ForeignKey('Offer', verbose_name='offre')
     offer = models.ForeignKey('Offer', verbose_name='offre')
 
 
     def get_subscription_reference(self):
     def get_subscription_reference(self):
-        return settings.SUBSCRIPTION_REFERENCE.format(subsciption=self)
+        return settings.SUBSCRIPTION_REFERENCE.format(subscription=self)
     get_subscription_reference.short_description = 'Référence'
     get_subscription_reference.short_description = 'Référence'
 
 
     def __unicode__(self):
     def __unicode__(self):

+ 2 - 2
coin/settings.py

@@ -237,9 +237,9 @@ MEMBER_DEFAULT_COTISATION = 20
 # membership fee
 # membership fee
 MEMBER_MEMBERSHIP_INFO_URL = ''
 MEMBER_MEMBERSHIP_INFO_URL = ''
 
 
-# Pattern used to display a unique reference for any subsciption
+# Pattern used to display a unique reference for any subscription
 # Helpful for bank wire transfer identification
 # Helpful for bank wire transfer identification
-SUBSCRIPTION_REFERENCE = 'SUB-{subsciption.offer.reference}-{subsciption.pk}'
+SUBSCRIPTION_REFERENCE = 'SUB-{subscription.offer.reference}-{subscription.pk}'
 
 
 # Reset session if cookie older than 2h.
 # Reset session if cookie older than 2h.
 SESSION_COOKIE_AGE = 7200
 SESSION_COOKIE_AGE = 7200