Skip to content

Commit

Permalink
Render missing fields in in study course detail #716
Browse files Browse the repository at this point in the history
  • Loading branch information
hupf committed Jan 7, 2025
1 parent b39e928 commit 19a5ac2
Showing 1 changed file with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ <h1>{{ personData.FullName }}</h1>
@if (personData.AddressLine1) {
{{ personData.AddressLine1 }}<br />
}
@if (personData.AddressLine2) {
{{ personData.AddressLine2 }}<br />
}
@if (personData.Zip && personData.Location) {
{{ personData.Zip }} {{ personData.Location }}<br />
}
Expand All @@ -28,7 +31,16 @@ <h1>{{ personData.FullName }}</h1>
@if (personData.PhoneMobile) {
<a href="tel:{{ personData.PhoneMobile }}">{{
personData.PhoneMobile
}}</a>
}}</a
><br />
}
@if (personData.Email) {
<a href="mailto:{{ personData.Email }}"> {{ personData.Email }} </a
><br />
}
@if (personData.Email2) {
<a href="mailto:{{ personData.Email2 }}"> {{ personData.Email2 }} </a
><br />
}
</address>
}
Expand Down

0 comments on commit 19a5ac2

Please sign in to comment.