I am trying to use Django-Postman and have gotten as far as being able to see the templates on the webpage after I press the link but I don't know how send messages works. According to the write view there should be a form loaded but all I get is the links to the other pages in the template. If someone could explain how to get this to work it would be fantastic.
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav ">
<li><a href="{% url 'login.views.course' %}">MyCourse</a></li>
<li><a href="{% url 'login.views.timetable' %}">Timetable</a></li>
<li><a href="{% url 'login.views.logout_view' %}">logout</a></li>
<li><a href="{% url 'postman:inbox' %}">Inbox</a></li>
</ul>
</div>