Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions chipy_org/apps/main/templates/main/homepage.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
{% endif %}

{% include "shiny/_rsvp.html" with curr_meeting=next_meeting %}
<p><a href="{{ next_meeting.get_absolute_url }}">details</a></p>

{% endif %}
</div> <!--closes column-->

Expand Down Expand Up @@ -131,8 +131,12 @@ <h5 class="black-text">{{ topic.title }}</h5>
</div>
{% endif %}
<p>
{{ topic.description|nh3|truncatewords_html:80|safe }}
{% if topic.description|nh3|wordcount > 90 %}
{{ topic.description|nh3|truncatewords_html:80|safe }}
<a href="{% url 'meeting' next_meeting.pk %}">Learn more</a>
{% else %}
{{ topic.description|nh3|safe }}
{% endif %}
</p>
</div>
{% endfor %}
Expand Down