Skip to content

Commit 9fdd93c

Browse files
Merge pull request #110 from FSU-ACM/release
env var addition + iconography tweaks
2 parents 85cb19c + 35ae81e commit 9fdd93c

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

src/contestsuite/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def get_secret(key, default=None):
125125
'USER': get_secret('SQL_USER', 'contestadmin'),
126126
'PASSWORD': get_secret('SQL_PASSWORD', 'seminoles1!'),
127127
'OPTIONS': {'charset': 'utf8mb4'},
128-
'TIME_ZONE': 'America/New_York',
128+
'TIME_ZONE': get_secret('SQL_TIMEZONE', 'America/New_York'),
129129
'AUTOCOMMIT': True,
130130
'CONN_MAX_AGE': 0,
131131
}

src/core/templates/core/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ <h5 class="card-title mb-0">{{ announcement.title }}</h5>
245245
<div class="col-lg-7 ">
246246
<div class="card mt-3 border-secondary">
247247
<div class="card-header font-weight-bold bg-secondary text-white">
248-
<i class="fa-solid fa-arrows-down-to-people fa-fw"></i> Registration
248+
<i class="fa-regular fa-clipboard fa-fw"></i> Registration
249249
</div>
250250
<div class="card-body">
251251
<h5>Upper Division</h5>

src/templates/base.html

+3-4
Original file line numberDiff line numberDiff line change
@@ -174,16 +174,15 @@
174174
<div class="col-md-4 my-3 text-md-left ">
175175
<div class="row justify-content-center">
176176
<div class="col text-center">
177-
<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>
178-
177+
<h3 class=" mb-3 font-italic text-primary">ACM at FSU</h3>
179178
<a href="mailto:contest@fsu.acm.org" title="ACM at FSU Email" class="text-warning d-block my-3"><i class="fa fa-envelope fa-fw text-white"></i> contest@fsu.acm.org</a>
180179

181180
<div class="pt-2">
181+
<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>
182182
<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>
183183
<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>
184184
<a href="https://www.instagram.com/fsuacm/" title="ACM at FSU Instagram" target="_blank" rel="external noopener"><i
185-
class="fab fa-instagram fa-lg text-white mx-3"></i></a>
186-
<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>
185+
class="fab fa-instagram fa-lg text-white ml-3"></i></a>
187186
</div>
188187
</div>
189188
</div>

0 commit comments

Comments
 (0)