Skip to content

Commit

Permalink
feat: addresses #6 & #7 by surfacing more survey data in profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
erictheise committed Mar 24, 2020
1 parent 7d119e6 commit d5940c4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions maps/templates/maps/individual_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@
<h1><span class="pc-ff--sans pc-fw--normal">Platform Co-op</span><br/> Directory</h1>
</div>
{% include 'maps/search.html' %}
{% if user.url %}
<h1><a rel="external" href="{{ user.url }}">{{ user.last_name }}, {{ user.first_name }}</a></h1>
{% else %}
<h1>{{ user.last_name }}, {{ user.first_name }}</h1>
{% endif %}

<div class="spacer"></div>
<span>
<span class="screen-reader-text">location: </span>
<svg class="icon icon--location" aria-hidden="true" viewBox="0 0 20 20" focusable="false">
Expand Down
6 changes: 6 additions & 0 deletions maps/templates/maps/organization_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@
<h1><span class="pc-ff--sans pc-fw--normal">Platform Co-op</span><br/> Directory</h1>
</div>
{% include 'maps/search.html' %}
{% if organization.url %}
<h1><a rel="external" href="{{ organization.url }}">{{ organization.name }}</a></h1>
{% else %}
<h1>{{ organization.name }}</h1>
{% endif %}

<div class="spacer"></div>
<span>
<span class="screen-reader-text">location: </span>
<svg class="icon icon--location" aria-hidden="true" viewBox="0 0 20 20" focusable="false">
Expand Down

0 comments on commit d5940c4

Please sign in to comment.