working for the most part

This commit is contained in:
2025-04-03 15:58:07 -04:00
parent bfd6d8af57
commit af7e24a948
18 changed files with 367 additions and 168 deletions

View File

@@ -6,8 +6,8 @@ group = Blueprint('group', __name__, url_prefix='/group')
@group.route('/')
def group_list():
groups = get_all_groups()
return render_template('group_list.html', groups=groups)
available_groups = get_all_groups()
return render_template('group_list.html', available_groups=available_groups)
@group.route('/add', methods=['POST'])