Skip to content

Commit

Permalink
DJLint
Browse files Browse the repository at this point in the history
  • Loading branch information
fsargent committed Jul 23, 2024
1 parent 703caa0 commit da21f66
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 17 deletions.
1 change: 0 additions & 1 deletion .python-version

This file was deleted.

38 changes: 22 additions & 16 deletions approval_polls/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,17 @@
<link type="text/css"
rel="stylesheet"
href="https://cdn.jsdelivr.net/jquery.jssocials/1.4.0/jssocials.css" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous">
</script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet">
<script src="https://js.sentry-cdn.com/78856604267db99554868743d5eb61e5.min.js"
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap"
rel="stylesheet">
<script src="https://js.sentry-cdn.com/78856604267db99554868743d5eb61e5.min.js"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jstimezonedetect/1.0.7/jstz.min.js"
integrity="sha512-pZ0i46J1zsMwPd2NQZ4IaL427jXE2RVHMk3uv/wPTNlBVp9AbB1L65/4YdrXRPLEmyZCkY9qYOOsQp44V4orHg=="
Expand Down Expand Up @@ -71,7 +75,7 @@
{% block login %}
{% if user.is_authenticated %}
<li class="nav-item">
<a class="nav-link" href="{% url 'my_info' %}">{% firstof user.username "My Profile"%}</a>
<a class="nav-link" href="{% url 'my_info' %}">{% firstof user.username "My Profile" %}</a>
</li>
<li class="nav-item">
<a class="nav-link"
Expand Down Expand Up @@ -110,18 +114,20 @@
<a href="{% url 'create' %}" target="_top">create your own poll</a>.
</p>
<div class="container mt-5">
<div class="row justify-content-center">
<div class="col-12 col-sm-10 col-md-8 col-lg-6 text-center">
<a href="https://www.electionscience.org" target="_blank" rel="noopener noreferrer">
<img src="{% static 'images/ces-horizontal-stack.png' %}"
class="img-fluid mx-auto d-block"
alt="Election Science Logo"
style="max-width: 100%; min-width: 200px;">
</a>
</div>
</div>
</div>

<div class="row justify-content-center">
<div class="col-12 col-sm-10 col-md-8 col-lg-6 text-center">
<a href="https://www.electionscience.org"
target="_blank"
rel="noopener noreferrer">
<img src="{% static 'images/ces-horizontal-stack.png' %}"
class="img-fluid mx-auto d-block"
alt="Election Science Logo"
style="max-width: 100%;
min-width: 200px">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
Expand Down

0 comments on commit da21f66

Please sign in to comment.