This is a simple Django application that allows you to add guests and visits. Visits are visible to the people working in the gatehouse. The app also helps the catering staff
Install Django Gatehouse
pip install django-gatehouse
Add "gatehouseapp" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'gatehouseapp', ]
Include the gatehouse URLconf in your project urls.py like this:
url(r'', include('gatehouseapp.urls')),
Run python manage.py migrate to create the gatehouse models.