You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
515 B
14 lines
515 B
{% load static %}
|
|
<script>
|
|
window.LIL_STORE = {
|
|
pusherKey: '{{ settings.PUSHER_KEY }}',
|
|
staticUrl: '{% static "" %}',
|
|
accessToken: '{{ request.user.auth_token }}',
|
|
isMobile: {{ request.user_agent.is_mobile|yesno:"true,false" }},
|
|
defaultUserPhoto: "{% static 'img/user_default.jpg' %}",
|
|
user: {
|
|
id: '{{ request.user.id|default:'' }}',
|
|
photo: '{% if request.user.photo %}{{ request.user.photo.url }}{% else %}{% static 'img/user_default.jpg' %}{% endif %}',
|
|
}
|
|
};
|
|
</script>
|
|
|