Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

blog_search_list_view.html 928B

123456789101112131415161718192021222324252627
  1. {% extends "base.html" %} {% block content %}
  2. {% load taggit_templatetags2_tags %}
  3. {% get_tagcloud as tags for 'application' %}
  4. {% include_tagcloud 'application.Post' %}
  5. <form type="get" action="." style="margin: 0">
  6. <input id="search_box" type="text" name="search_box" placeholder="Search...">
  7. <button id="search_submit" type="submit">Submit</button>
  8. </form>
  9. <div>
  10. {% for post in posts %}
  11. <div class="post">
  12. <div class="date">
  13. {{ post.published_date }}
  14. </div>
  15. <h1>
  16. <a href="{% url 'post_detail' pk=post.pk %}">{{ post.title }}</a>
  17. </h1>
  18. <p>{{ post.text|linebreaks }}</p>
  19. Tags: {% for tag in post.tags.all %}
  20. <a href="{% url 'post_list_by_tag' tag.slug %}">{{ tag.name }}</a>
  21. {% if not forloop.last %}, {% endif %} {% endfor %} <p>
  22. {{ post.author }}
  23. </p>
  24. </div>
  25. {% endfor %}
  26. </div>
  27. {% endblock %}