update req file and update directory structure
This commit is contained in:
		
					parent
					
						
							
								b8824b3f46
							
						
					
				
			
			
				commit
				
					
						2477fbc11b
					
				
			
		
					 22 changed files with 11 additions and 7 deletions
				
			
		| 
						 | 
				
			
			@ -120,6 +120,10 @@ TEMPLATES = [
 | 
			
		|||
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
 | 
			
		||||
        'DIRS': [
 | 
			
		||||
            os.path.join(PROJECT_DIR, 'membership/'),  # membership template
 | 
			
		||||
            os.path.join(PROJECT_DIR,'templates/'),
 | 
			
		||||
            os.path.join(PROJECT_DIR,'templates/digitalglarus/partials'),
 | 
			
		||||
            os.path.join(PROJECT_DIR,'templates/cms'),
 | 
			
		||||
            os.path.join(PROJECT_DIR,'templates/digitalglarus'),
 | 
			
		||||
        ],
 | 
			
		||||
        'APP_DIRS': True,
 | 
			
		||||
        'OPTIONS': {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -51,7 +51,7 @@ class CustomUser(AbstractBaseUser):
 | 
			
		|||
    objects = MyUserManager()
 | 
			
		||||
 | 
			
		||||
    USERNAME_FIELD = "email"
 | 
			
		||||
    REQUIRED_FIELDS = ['name','password']
 | 
			
		||||
    REQUIRED_FIELDS = ['name', 'password']
 | 
			
		||||
 | 
			
		||||
    @classmethod
 | 
			
		||||
    def register(cls, name, password, email):
 | 
			
		||||
| 
						 | 
				
			
			@ -60,7 +60,8 @@ class CustomUser(AbstractBaseUser):
 | 
			
		|||
            user = cls.objects.create_user(username=name, email=email, password=password)
 | 
			
		||||
            if user:
 | 
			
		||||
                user.validation_slug = make_password(None)
 | 
			
		||||
                send_mail(REGISTRATION_MESSAGE['subject'], REGISTRATION_MESSAGE['message'].format(user.validation_slug),
 | 
			
		||||
                send_mail(REGISTRATION_MESSAGE['subject'],
 | 
			
		||||
                          REGISTRATION_MESSAGE['message'].format(user.validation_slug),
 | 
			
		||||
                          REGISTRATION_MESSAGE['from'], [user.email], fail_silently=False)
 | 
			
		||||
                return user
 | 
			
		||||
            else:
 | 
			
		||||
| 
						 | 
				
			
			@ -75,8 +76,10 @@ class CustomUser(AbstractBaseUser):
 | 
			
		|||
            user.validated = 1
 | 
			
		||||
            return True
 | 
			
		||||
        return False
 | 
			
		||||
 | 
			
		||||
    def is_superuser(self):
 | 
			
		||||
        return True
 | 
			
		||||
 | 
			
		||||
    def is_admin(self):
 | 
			
		||||
        return True
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -107,7 +110,6 @@ class CustomUser(AbstractBaseUser):
 | 
			
		|||
        # Simplest possible answer: All admins are staff
 | 
			
		||||
        return self.is_admin
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# class CreditCards(models.Model):
 | 
			
		||||
#     id = models.IntegerField(primary_key=True)
 | 
			
		||||
#     user_id = models.ForeignKey(User, on_delete=models.CASCADE)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -92,7 +92,6 @@ pyzmq==14.7.0
 | 
			
		|||
requests==2.7.0
 | 
			
		||||
simplejson==3.8.0
 | 
			
		||||
six==1.10.0
 | 
			
		||||
South==1.0.2
 | 
			
		||||
sqlparse==0.1.15
 | 
			
		||||
stripe==1.22.3
 | 
			
		||||
tomako==0.1.0
 | 
			
		||||
| 
						 | 
				
			
			@ -100,5 +99,4 @@ TornadIO2==0.0.3
 | 
			
		|||
tornado==4.2.1
 | 
			
		||||
Unidecode==0.4.19
 | 
			
		||||
URLObject==2.4.0
 | 
			
		||||
wheel==0.29.0
 | 
			
		||||
YURL==0.13
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -51,7 +51,7 @@
 | 
			
		|||
  {% cms_toolbar %}
 | 
			
		||||
    <div class="brand">Digital Glarus</div>
 | 
			
		||||
    <div class="address-bar">
 | 
			
		||||
      {% placeholder 'digital_glarus_legend' %}
 | 
			
		||||
{#      {% placeholder 'digital_glarus_legend' %}#}
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="center-block">
 | 
			
		||||
      <ul class="list-inline center-block language-chooser-list">
 | 
			
		||||
| 
						 | 
				
			
			@ -1,4 +1,4 @@
 | 
			
		|||
{% extends "cms/digitalglarus/base.html" %}
 | 
			
		||||
{% extends "digitalglarus/base.html" %}
 | 
			
		||||
{% load staticfiles cms_tags %}
 | 
			
		||||
{% block title %}crowdfunding{% endblock %}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue