A POC telemedicine webstie that uses webrtc and scaedrone to offer video/audio chats with doctors
General information about the site
The actual service we want to provide via the site
Stuff like login/register and user pages
All html files should USUALLY extend base.html this has the navbar and footer, aswell as some required css/js. The links block in base.html can be use in order to add any additional css/js files. The content block is where the content of the current page should go. Finally, the title block should contain the title for the page, it will get "Healine |" prepended, so for the login page it would be: "Healine | Login".
Static files are put in the static folder at the root directory of the repo. They are split per-app, files spanning the entire site go in the base folder.
Static files are referenced in your html as follows:
{% load static %}
<link href="{% static 'APP_NAME/CSS/FILE_NAME.css' %}" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="{% static 'APP_NAME/JS/FILE_NAME.js' %}"></script>
<img alt="..." type="..." src="{% static 'APP_NAME/IMG/FILE_NAME.png' %}"/>