Your question is so broad and hence the downvotes. Anyways, i will help with what i have done. If you are really looking for a simple music player, html audio tag will be helpful for you.
For reference, this is a small snippet from the django template:
playlist_data.html:
{% for song in song_list %}
<tr>
<td>{{ song.song_title }}</td>
<td>{{ song.album.artist }}</td>
<td>
<audio controls="controls">
<source src="{{ song.audio_file.url }}" type="audio/ogg" />
<source src="{{ song.audio_file.url }}" type="audio/mpeg" />
<source src="{{ song.audio_file.url }}" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
<td>
<a href="{% url 'music:detail' song.album.id %}">
<img src="{{ song.album.album_logo.url }}" class="img-responsive" style="width: 20px; float: left; margin-right: 10px;" />
</a>
<a href="{% url 'music:detail' song.album.id %}">{{ song.album.album_title }}</a>
</td>
<td>
<a href="{% url 'music:favorite' song.id %}" class="btn-favorite"><span class="glyphicon glyphicon-star {% if song.is_favorite %}active{% endif %}"></span></a>
</td>
<td>
</td>
</tr>
{% endfor %}
Let me know if you need any help.