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.
19 lines
626 B
19 lines
626 B
{% load static %}
|
|
{% load setting from settings %}
|
|
<script>
|
|
window.LIL_STORE = {
|
|
pusherKey: '{% setting "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 %}',
|
|
},
|
|
components: {},
|
|
urls: {
|
|
courses: "{% url 'courses' %}"
|
|
},
|
|
};
|
|
</script>
|
|
|