Skip to content

Commit

Permalink
Fix label.
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrillkuettel committed Jul 31, 2024
1 parent e3af780 commit 4794fac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/privatim/views/templates/person.pt
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
<ul>
<li>${user.email}</li>
</ul>
<h2 tal:condition="meeting_urls" i18n:translate="">Created Meetings</h2>
<h2 tal:condition="meeting_urls" i18n:translate="">Meetings</h2>
<ul tal:condition="meeting_urls">
<li tal:repeat="meeting meeting_urls">
<a tal:attributes="href meeting.url">${meeting.name}</a>
</li>
</ul>
<h2 tal:condition="consultation_urls" i18n:translate="">Created Consultations</h2>
<h2 tal:condition="consultation_urls" i18n:translate="">Consultations</h2>
<ul tal:condition="consultation_urls">
<li tal:repeat="consultation consultation_urls">
<a tal:attributes="href consultation.url">${consultation.title}</a>
Expand Down

0 comments on commit 4794fac

Please sign in to comment.