ambassadors

This commit is contained in:
Yisroel Baum 2024-09-04 22:12:37 +03:00
parent e7c0c5ca4d
commit 3be578174f
3 changed files with 3 additions and 3 deletions

0
app/campaigns/forms.py Normal file
View file

View file

@ -11,6 +11,4 @@ class Campaign(db.Model):
__tablename__ = 'campaign'
id = Column('id', INTEGER(), primary_key=True)
title = Column('title', TEXT(), nullable=False)
email = Column('email', TEXT(), nullable=False, unique=True)
password = Column('password', TEXT(), nullable=False)
user_type = Column('user_type', TEXT(), nullable=False)
#ambassadors

View file

@ -0,0 +1,2 @@
{% extends 'base.html' %}
{% block title %}Add campaign{% endblock title %}