Skip to content

Commit

Permalink
Minor fixes for hiring administration (#575)
Browse files Browse the repository at this point in the history
* Simplify button language

* Fix API for creating missing course sites for a term
  • Loading branch information
KrisJordan authored Aug 12, 2024
1 parent 92c54f7 commit da587c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions backend/services/academics/hiring.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ def create_missing_course_sites_for_term(self, subject: User, term_id: str) -> b

# Get a list of all sections that are not associated with course sites
section_query = select(SectionEntity).where(
SectionEntity.term_id == term_id,
SectionEntity.course_site_id.is_(None)
)
joint: dict[tuple[str, str], list[SectionEntity]] = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<mat-card-title>{{ selectedTerm().name }} Hiring</mat-card-title>
<div class="header-actions">
<button mat-stroked-button (click)="updateEnrollmentTotals()">
Update Enrollment Totals
Enrollments
</button>
<button mat-stroked-button routerLink="/hiring/levels">
Manage Hiring Levels
Levels
</button>
<button mat-flat-button routerLink="/hiring/summary">View Summary</button>
<button mat-flat-button routerLink="/hiring/summary">Onboarding</button>
<mat-form-field class="term-selector" appearance="outline">
<mat-label>Select Term</mat-label>
<mat-select
Expand Down

0 comments on commit da587c7

Please sign in to comment.