Skip to content
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
2 changes: 2 additions & 0 deletions efile_app/efile/static/config/states/massachusetts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jurisdiction:
icon: "fas fa-balance-scale"
svg: "img/MA.svg"
api_endpoint: "/api/massachusetts"
help_url: "https://www.mass.gov/orgs/massachusetts-court-system"
help_number: "711"

# State metadata
state:
Expand Down
9 changes: 9 additions & 0 deletions efile_app/efile/static/css/components/footer.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
footer {
/* position: absolute;
bottom: 0; */
width: 100%;
height: 2.5rem;
line-height: 2.5rem;
overflow: hidden;
background-color: #fff;
}
18 changes: 18 additions & 0 deletions efile_app/efile/templates/efile/components/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{% load static %}
{% load i18n %}
<link href="{% static 'css/header.css' %}" rel="stylesheet" />
<link href="{% static 'css/components/footer.css' %}" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
rel="stylesheet" />
<footer>
<div class="container">
<div class="d-flex" style="justify-content: end">
<div style="padding:0 1rem;">
<a href="{{ jurisdiction.help_url }}"><i class="fas fa-circle-info"></i>{% translate "Get more help" %}</a>
</div>
<div style="padding:0 1rem;">
<a href="tel:{{ jurisdiction.help_number }}"><i class="fas fa-phone"></i>Call</a>
</div>
</div>
</div>
</footer>
1 change: 1 addition & 0 deletions efile_app/efile/templates/efile/expert_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ <h5 class="mb-0">Case Information Found</h5>
</form>
</div>
</div>
{% include "efile/components/footer.html" %}
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
<!-- Pass case data to JavaScript -->
{{ case_data|json_script:"case-data" }}
Expand Down
1 change: 1 addition & 0 deletions efile_app/efile/templates/efile/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ <h2>{% translate "Start a new filing" %}</h2>
</div>
</div>
</div>
{% include "efile/components/footer.html" %}
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
<script src="{% url 'javascript-catalog' %}"></script>
<script src="{% static 'js/api-utils.js' %}"></script>
Expand Down
1 change: 1 addition & 0 deletions efile_app/efile/templates/efile/payment.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ <h3>{% translate "Filing Fees" %}</h3>
</div>
</div>
</div>
{% include "efile/components/footer.html" %}
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
<script src="{% url 'javascript-catalog' %}"></script>
<!-- Django template data for JavaScript -->
Expand Down
1 change: 1 addition & 0 deletions efile_app/efile/templates/efile/review.html
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ <h2 class="mb-4">{% translate "Submit my filing" %}</h2>
</div>
</div>
</div>
{% include "efile/components/footer.html" %}
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
<script src="{% url 'javascript-catalog' %}"></script>
<!-- Django template data for JavaScript -->
Expand Down
1 change: 1 addition & 0 deletions efile_app/efile/templates/efile/upload.html
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ <h2>Before you continue</h2>
</form>
</div>
</div>
{% include "efile/components/footer.html" %}
{{ upload_data|json_script:"upload-data" }}
{{ case_classification|json_script:"case-classification" }}
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
Expand Down
1 change: 1 addition & 0 deletions efile_app/efile/templates/efile/upload_first.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ <h2>
</form>
</div>
</div>
{% include "efile/components/footer.html" %}
{{ upload_data|json_script:"upload-data" }}
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
<script src="{% url 'javascript-catalog' %}"></script>
Expand Down