12 lines
268 B
JavaScript
12 lines
268 B
JavaScript
![]() |
{% autoescape off %}
|
||
|
{% load angular_escapes from angular %}
|
||
|
angular
|
||
|
.module('horizon.app')
|
||
|
.run(['$templateCache', function($templateCache) {
|
||
|
$templateCache.put(
|
||
|
"{{ static_path }}",
|
||
|
"{{ template_html|angular_escapes }}"
|
||
|
);
|
||
|
}]);
|
||
|
{% endautoescape %}
|