Problem
I'm implementing StrapAngular in my application, however I can not use the contentTamplate to insert a form into my modal aside.
I tried as follows
mainCtrl
$scope.aside = {
"title": "Novo agendamento",
"contentTemplate": 'views/agenda/form-novo-agendamento.tpl.html'
};
Button
<buttontype="button" class="btn btn-lg btn-primary" bs-aside="aside">
Novo agendamento
</button>
The title is filled correctly but the content does not come, the same happens with inserting the template directly from the data-template:
<button type="button" class="btn btn-lg btn-danger" data-template="views/agenda/form-novo-agendamento.tpl.html" data-placement="left" data-animation="am-slide-left" bs-aside="aside" data-container="body">Novo agendamento
</button>