{% extends 'base.html.twig' %} {% block localstyle %} .surveyaction { min-width:100px; } .grid { margin-bottom:200px;} .gutter-sizer { width: 2%; } .grid-sizer, .grid-item { width: 49%; } .grid-full { width: 100% } @media (max-width: 991px) { .grid-sizer, .grid-item { width: 100%; } .gutter-sizer { width: 0%; } } {% endblock %} {% block body %}

SONDAGES DE DATES

{% endblock %} {% block localjavascript %} $(document).ready(function() { $(".notmy").detach().appendTo('.grid'); $(".notmy").hide(); $(".notmytitle").hide(); $('.grid').masonry({ itemSelector: '.grid-item', columnWidth: '.grid-sizer', gutter: '.gutter-sizer', percentPosition: true, }); }); $(".grid").show(); function copyurl(id) {   var copyText = $("#url-"+id); var url = copyText.text(); copyToClipboard(copyText); $("#url-"+id).fadeOut( "slow" ); $("#url-"+id).fadeIn( "slow" ).text(url); } function copyToClipboard(element) { var $temp = $(""); $("body").append($temp); $temp.val($(element).text()).select(); document.execCommand("copy"); $temp.remove(); } $('#switchactive').change(function() { if($(this).is(":checked")) { $(".notmy").hide(); $(".notmytitle").hide(); } else { $(".notmy").show(); $(".notmytitle").show(); } $('.grid').masonry({ itemSelector: '.grid-item', columnWidth: '.grid-sizer', gutter: '.gutter-sizer', percentPosition: true, }); }); {% endblock %}