{% extends 'ideabook/base.html' %} {% load widget_tweaks %} {% load humanize %} {% load static %} {% block breadcrumb %} {% endblock %} {% block profileheader %} {% endblock %} {% block new_idea %}
{% csrf_token %} {% render_field form.idea_text class="form-control" %}
{% endblock %} {% block content %} {%if feed_ideas%} {% for idea in feed_ideas %}
{%if idea.idea_user.profile_user.profile_pic and idea.idea_anonymous != True %} {% else %} {% endif %}
{% if idea.idea_anonymous %} anonymous {% else %} {{idea.idea_user.username}} {% endif %} {%if idea.edit_date%} Edited. {{idea.idea_edit_date|naturaltime}} {%else%} {{idea.idea_date|naturaltime}} {%endif%}

{{ idea.idea_text }}

{{ idea.how_creative_idea }} {{ idea.how_easy_to_realize_idea }} {{ idea.what_community_idea_engages }}

{% csrf_token %} {%if idea.id in liked_ideas%} {% else %} {% endif %}
{{idea.num_likes}} like{{ idea.num_likes|pluralize }}
{% endfor %} {%else%}

No recent ideas

{%endif%} {% endblock %}