diff --git a/src/mainapp/teams_demo_test.py b/src/mainapp/teams_demo_test.py new file mode 100644 index 0000000..0f95ba5 --- /dev/null +++ b/src/mainapp/teams_demo_test.py @@ -0,0 +1,11 @@ +import names +from string import ascii_lowercase + +created_teams = [] +for char in ascii_lowercase: + created_teams.append({ + "identifier": char.upper(), + "members": [{ + "name": names.get_full_name() + } for i in range(9)] + }) diff --git a/src/mainapp/templates/teams.html b/src/mainapp/templates/teams.html index 2bcfb1b..97ce908 100644 --- a/src/mainapp/templates/teams.html +++ b/src/mainapp/templates/teams.html @@ -16,32 +16,13 @@