Merges display of lists to show all

Rather than separating out "your lists"
This commit is contained in:
Mouse Reeve
2021-03-30 10:19:51 -07:00
parent d021666f2b
commit 9b949d9845
3 changed files with 21 additions and 29 deletions

View File

@ -14,7 +14,13 @@
{% endfor %}
</div>
<div class="card-content is-flex-grow-0">
{% if list.description %}{{ list.description | to_markdown | safe | truncatewords_html:20 }}{% endif %}
<div {% if list.description %}title="{{ list.description }}"{% endif %}>
{% if list.description %}
{{ list.description|to_markdown|safe|truncatechars_html:30 }}
{% else %}
&nbsp;
{% endif %}
</div>
<p class="subtitle help">
{% include 'lists/created_text.html' with list=list %}
</p>