Skip to content

Commit

Permalink
refactor: We do not have normal memberships
Browse files Browse the repository at this point in the history
active, supporting and honourary are the three to choose from.
  • Loading branch information
AiyionPrime committed Jan 6, 2025
1 parent 7cb7dbd commit d7df0bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def iban_validator(form, field):

parser = etree.HTMLParser(encoding="utf-8")

class NormalesMitgliedForm(FlaskForm):
class AktivesMitgliedForm(FlaskForm):
pass

class SEPABase(FlaskForm):
Expand Down Expand Up @@ -70,7 +70,7 @@ def calc_beitrag(foerderbeitrag=None):

@app.route("/", methods=["GET", "POST"])
def home():
xCls = NormalesMitgliedForm
xCls = AktivesMitgliedForm

if request.form.get('mitgliedsart') == "Fördermitgliedschaft (Kein Stimmrecht auf Mitgliederversammlungen, beliebiger Beitrag)":
#form = BaseFormFoerderMitglied()
Expand Down

0 comments on commit d7df0bd

Please sign in to comment.