</div>
{% block module-action %}
+{% get_telecaster as telecaster %}
{% if telecaster %}
<div class="module_action">
<a href="{% url teleforma-conference-record %}" class="component_icon button" id="action_red">{% trans "New conference" %}</a>
{% load i18n %}
{% load telemeta_utils %}
{% load teleforma_tags %}
+{% get_googletools as googletools %}
+{% if googletools %}
{% load googletools %}
+{% endif %}
{% get_current_language as LANGUAGE_CODE %}
{% get_available_languages as LANGUAGES %}
<html xmlns="http://www.w3.org/1999/xhtml" lang="{{ LANGUAGE_CODE }}" xml:lang="{{ LANGUAGE_CODE }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}>
return Course.objects.all()
@register.assignment_tag
-def telecaster():
+def get_telecaster():
+ print settings.INSTALLED_APPS
return 'telecaster' in settings.INSTALLED_APPS
@register.assignment_tag
-def googletools():
+def get_googletools():
return 'googletools' in settings.INSTALLED_APPS