Skip to content

Commit c902abc

Browse files
authored
disable meeting links
commented out HTML anchor tag for meeting link.
1 parent 4efad1d commit c902abc

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Calendar/Calendar.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def generate_calendar_html(year, month):
7979
if ev.Featured:
8080
classes.append('feat')
8181

82-
html.append("<a href='/Meeting/%s'>" % ev.MeetingId)
82+
#html.append("<a href='/Meeting/%s'>" % ev.MeetingId)
8383

8484
html.append("<div class='%s'>" % ' '.join(classes))
8585

@@ -89,7 +89,8 @@ def generate_calendar_html(year, month):
8989
ev.MeetingDate.ToString("h:mmtt") if ev.MeetingEnd is None else ev.MeetingEnd.ToString("h:mmtt")
9090
)).lower().replace(":00",""))
9191

92-
html.append("</div></a>")
92+
html.append("</div>")
93+
# html.append("</a>")
9394
html.append("</td>")
9495
html.append("</tr>")
9596

0 commit comments

Comments
 (0)