Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CONCD-904 Update language in profile page top count #2489

Merged
merged 1 commit into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion concordia/static/scss/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1305,7 +1305,6 @@ div.related-links {
background-color: #f6f6f6;
border: 1px solid black;
flex: 1;
font-weight: bold;
margin: 0.5rem;
padding-bottom: 15px;
padding-top: 5px;
Expand All @@ -1315,10 +1314,13 @@ div.related-links {
.contribution-highlight .value {
color: $blue;
font-size: xxx-large;
font-weight: bold;
}

.contribution-highlight .label {
font-size: large;
font-weight: bold;
margin-bottom: 0;
}

.contribution-table a {
Expand Down
3 changes: 3 additions & 0 deletions concordia/templates/account/profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,14 +113,17 @@ <h2>My Contributions</h2>
<div class="contribution-highlight">
<div class="value">{{ user_profile_activity.count|intcomma }}</div>
<p class="label">Campaigns</p>
<p>Your saves, submits, and reviews</p>
</div>
<div class="contribution-highlight">
<div class="value">{{ pages_worked_on|intcomma }}</div>
<p class="label">Pages Worked On</p>
<p>Campaigns you've worked on</p>
</div>
<div class="contribution-highlight">
<div class="value">{{ totalCount|intcomma }}</div>
<p class="label">Actions</p>
<p>Pages you've worked on</p>
</div>
</div>
<div class="d-flex mt-4">
Expand Down