From e39f8d6feef7864eeade3a98475f28f9c7b6af3c Mon Sep 17 00:00:00 2001 From: leigh-mil Date: Mon, 4 Feb 2019 13:56:49 -0500 Subject: [PATCH] Update Portfolio names in seed file to reflect funding status --- script/seed_sample.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script/seed_sample.py b/script/seed_sample.py index 2e116caa..801056e9 100644 --- a/script/seed_sample.py +++ b/script/seed_sample.py @@ -100,7 +100,7 @@ def seed_db(): # create Portfolios for all users that have funding and are not expiring soon for user in users: portfolio = Portfolios.create( - user, name="{}'s portfolio".format(user.first_name) + user, name="{}'s portfolio (not expiring)".format(user.first_name) ) for portfolio_role in PORTFOLIO_USERS: ws_role = Portfolios.create_member(user, portfolio, portfolio_role) @@ -167,7 +167,7 @@ def seed_db(): # Create Portfolio for Amanda with TO that is expiring soon and does not have another TO unfunded_portfolio = Portfolios.create( - amanda, name="{}'s unfunded portfolio".format(amanda.first_name) + amanda, name="{}'s portfolio (expiring and unfunded)".format(amanda.first_name) ) [past_date_1, past_date_2, past_date_3, future_date] = sorted( @@ -205,7 +205,7 @@ def seed_db(): # Create Portfolio for Amanda with TO that is expiring soon and has another TO funded_portfolio = Portfolios.create( - amanda, name="{}'s funded portfolio".format(amanda.first_name) + amanda, name="{}'s portfolio (expiring and funded)".format(amanda.first_name) ) [