Skip to content

Commit

Permalink
feat(app): Adjust CV sections order
Browse files Browse the repository at this point in the history
Somewhat resembles common sense and LinkedIn
  • Loading branch information
alexpovel committed Sep 3, 2022
1 parent 43e577a commit ac2ad1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ancv/visualization/templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -502,16 +502,16 @@ def __rich_console__(
title: str
for container, title in [
(self.model.work, "Experience"),
(self.model.skills, "Skills"),
(self.model.volunteer, "Volunteering"),
(self.model.education, "Education"),
(self.model.skills, "Skills"),
(self.model.awards, "Awards"),
(self.model.certificates, "Certificates"),
(self.model.publications, "Publications"),
(self.model.languages, "Languages"),
(self.model.references, "References"),
(self.model.interests, "Interests"),
(self.model.volunteer, "Volunteering"),
(self.model.projects, "Projects"),
(self.model.interests, "Interests"),
]:
if container:
group = Group(
Expand Down

0 comments on commit ac2ad1f

Please sign in to comment.