Skip to content

Commit

Permalink
Merge pull request #110 from FSU-ACM/release
Browse files Browse the repository at this point in the history
env var addition + iconography tweaks
  • Loading branch information
mmcinnestaylor authored Sep 19, 2023
2 parents 85cb19c + 35ae81e commit 9fdd93c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/contestsuite/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def get_secret(key, default=None):
'USER': get_secret('SQL_USER', 'contestadmin'),
'PASSWORD': get_secret('SQL_PASSWORD', 'seminoles1!'),
'OPTIONS': {'charset': 'utf8mb4'},
'TIME_ZONE': 'America/New_York',
'TIME_ZONE': get_secret('SQL_TIMEZONE', 'America/New_York'),
'AUTOCOMMIT': True,
'CONN_MAX_AGE': 0,
}
Expand Down
2 changes: 1 addition & 1 deletion src/core/templates/core/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ <h5 class="card-title mb-0">{{ announcement.title }}</h5>
<div class="col-lg-7 ">
<div class="card mt-3 border-secondary">
<div class="card-header font-weight-bold bg-secondary text-white">
<i class="fa-solid fa-arrows-down-to-people fa-fw"></i> Registration
<i class="fa-regular fa-clipboard fa-fw"></i> Registration
</div>
<div class="card-body">
<h5>Upper Division</h5>
Expand Down
7 changes: 3 additions & 4 deletions src/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -174,16 +174,15 @@
<div class="col-md-4 my-3 text-md-left ">
<div class="row justify-content-center">
<div class="col text-center">
<h3 class=" mb-3 text-white"><a class="font-italic text-primary" href="https://fsu.acm.org" title="ACM at FSU Homepage" target="_blank" rel="external noopener">ACM at FSU</a></h3>

<h3 class=" mb-3 font-italic text-primary">ACM at FSU</h3>
<a href="mailto:[email protected]" title="ACM at FSU Email" class="text-warning d-block my-3"><i class="fa fa-envelope fa-fw text-white"></i> [email protected]</a>

<div class="pt-2">
<a href="https://fsu.acm.org" title="ACM at FSU Homepage" target="_blank" rel="external noopener"><i class="fa-solid fa-house-chimney fa-lg text-white mr-3"></i></a>
<a href="https://www.facebook.com/ACMatFSU/" title="ACM at FSU Facebook" target="_blank" rel="external noopener"><i class="fab fa-facebook fa-lg text-white mr-3"></i></a>
<a href="https://discord.gg/4z3hNMA" title="ACM at FSU Discord" target="_blank" rel="external noopener"><i class="fab fa-discord fa-lg text-white mx-3"></i></a>
<a href="https://www.instagram.com/fsuacm/" title="ACM at FSU Instagram" target="_blank" rel="external noopener"><i
class="fab fa-instagram fa-lg text-white mx-3"></i></a>
<a href="https://www.linkedin.com/groups/12238485/" title="ACM at FSU LinkedIn" target="_blank" rel="external noopener"><i class="fab fa-linkedin fa-lg text-white ml-3"></i></a>
class="fab fa-instagram fa-lg text-white ml-3"></i></a>
</div>
</div>
</div>
Expand Down

0 comments on commit 9fdd93c

Please sign in to comment.