I have installed and configured django-postman
based on documentation:
in urls.py
in root of my project:
(r'^messages/', include('postman.urls')),
in settings.py:
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'grappelli',
'filebrowser',
'django.contrib.admin',
'south',
'postman',
'MeetingManagerHub',
'PersonHub',
'TaskManagerHub',
'AgencyHub',
'DrHub',
'CompanyHub',
'AdvHub',
'CarHub',
'django.contrib.comments',
'easy_maps',
'MagazineHub',
'captcha',
'pagination'
)
so I enter the address: http://127.0.0.1:8081/messages/inbox/
but when I click on links none of them works!I just see this page!
update :
I created an man_base.html file with this content:
<html>
<head>
<title>{% block title %}{% endblock %}</title>
{% block extrahead %}{% endblock %}
</head>
<body>
{% block postman_menu %}{% endblock %}
{% block content %}{% endblock %}
</body>
</html>
and added this line to the start of base.html
file:
{% extends "postman/main_base.html" %}
and It worked!