> I am needing to display a wait message while processing perform some process on the server anyone could help me
A simple option is to run your processing via Celery or some other task queue. You then store the job status somewhere in your database, and export the job status via a simple JSON API. Your webpage then uses Javascript to poll the status URL and update the status message.