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.

student_page.html 468B

1234567891011121314
  1. {% extends "base.html" %} {% block content %} {% load taggit_templatetags2_tags %}
  2. {% get_taglist as tags for 'application.post'%}
  3. <div>
  4. <form class="post-form" method="post">
  5. {% csrf_token %} {{form.as_p}}
  6. <button type="submit" class="save btn btn-outline-dark">Save</button>
  7. </form>
  8. {% if messages %}
  9. {% for message in messages %}
  10. <div {% if message.tags %} class="{{ message.tags }}" {% endif %}>{{ message }}</div>
  11. {% endfor %}
  12. {% endif %}
  13. {% endblock %}