Skip to content
Snippets Groups Projects
Commit e57b3ede authored by Brandon Rodriguez's avatar Brandon Rodriguez
Browse files

Correct handling of address in contact section

parent 1a348575
Branches
No related merge requests found
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
</div> </div>
{% elif data.display_category == 'Contact' %} {% elif data.display_category == 'Contact' %}
{% include 'resume_manager/include/contact.html' with data=content.contact title=data.section_title description=data.section_description %} {% include 'resume_manager/include/contact.html' with data=content.contact address=content.address title=data.section_title description=data.section_description %}
{% elif data.display_category == 'Education' %} {% elif data.display_category == 'Education' %}
{% if data.minimalistic %} {% if data.minimalistic %}
......
...@@ -15,7 +15,9 @@ ...@@ -15,7 +15,9 @@
<div class="flex flex-vertical"> <div class="flex flex-vertical">
<p class="flex flex-horizontal flex-align-start padding-02"> <p class="flex flex-horizontal flex-align-start padding-02">
<span class="descriptor font-size-small">Address:</span> {{ data.address }} {% if address %}
<span class="descriptor font-size-small">Address:</span> &nbsp; <span class="font-size-x-small">{{ address.city }}, {{ address.state }}</span>
{% endif %}
</p> </p>
<p class="flex flex-horizontal flex-justify-space-between padding-02"> <p class="flex flex-horizontal flex-justify-space-between padding-02">
<span> <span>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment