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 638B

12345678910111213141516171819
  1. {% extends "base.html" %} {% block content %}
  2. <form id="searchform" action="{% url 'blog_search_list_view' %}" method="get" accept-charset="utf-8">
  3. <button class="searchbutton" type="submit">
  4. <i class="fa fa-search"></i>
  5. </button>
  6. <input class="searchfield" id="searchbox" name="q" type="text" placeholder="Search">
  7. </form>
  8. <div class="table-responsive">
  9. <table class="table table-striped table-bordered table-hover">
  10. </table>
  11. </div>
  12. <form class="post-form" method="post">
  13. {% csrf_token %}
  14. {{form.as_p}}
  15. <button type="submit" class="save btn btn-outline-dark">Save</button>
  16. </form>
  17. {% endblock %}