Compare commits

..

No commits in common. "7a3369eb28a73baf223a93ec5cfb040bb5bdc2d2" and "12b66c3b836f016ff7d10133a7da6c8f8eeba319" have entirely different histories.

2 changed files with 2 additions and 21 deletions

View File

@ -33,8 +33,6 @@ DATABASES = {
}
}
NGINX_DIR = os.environ['NGINX_DIRECTORY']
MEDIA_ROOT = os.path.join(VAR_DIR, 'media')
MEDIA_ROOT = os.path.join(NGINX_DIR, 'media')
STATIC_ROOT = os.path.join(NGINX_DIR, 'staticfiles')
STATIC_ROOT = os.path.join(VAR_DIR, 'staticfiles')

View File

@ -154,21 +154,4 @@
</div>
{% include "common_files/contact.html" with responsable="Nathalie ROHRBACH, Directrice" email="ecole@musique-meyenheim.fr" %}
<script type="text/javascript">
$(function () {
$('[data-toggle="popover"]').popover({trigger: "hover"})
})
appear({
elements: function elements(){
// work with all elements with the class "track"
return document.getElementsByClassName('track');
},
appear: function appear(el){
console.log('visible', el);
$(el).popover('show');
},
});
</script>
{% endblock %}