Skip to content

Commit

Permalink
add new dates to csv export
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt-Spence committed Aug 29, 2024
1 parent 8bb3f00 commit ba1553a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/registrar/utility/csv_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -1235,7 +1235,9 @@ def parse_row(cls, columns, model):
"State/territory": model.get("state_territory"),
"Request purpose": model.get("purpose"),
"CISA regional representative": model.get("cisa_representative_email"),
"Submitted at": model.get("last_submitted_date"),
"Last submitted date": model.get("last_submitted_date"),
"First submitted date": model.get("first_submitted_date"),
"Last status update": model.get("last_status_update"),
}

row = [FIELDS.get(column, "") for column in columns]
Expand Down Expand Up @@ -1304,7 +1306,9 @@ def get_columns(cls):
"""
return [
"Domain request",
"Submitted at",
"Last submitted date",
"First submitted date",
"Last status update",
"Status",
"Domain type",
"Federal type",
Expand Down

0 comments on commit ba1553a

Please sign in to comment.