Statistics
| Branch: | Tag: | Revision:

root / cloudcms / templates / content / client_downloads.html @ 511913cb

History | View | Annotate | Download (342 Bytes)

1
<div class="clients-wrapper">
2
    <ul>
3
    </ul>
4
</div>
5

    
6
<script>
7
    $(document).ready(function(){
8
        if (window.ClientDownloads) {
9
            var clients_data = {{ content.client.to_json|safe }};
10
            var clients = new ClientDownloads(".clients-wrapper", clients_data);
11
            clients.update();
12
        }
13
    })
14
</script>