beautify CTI not configured screen

This commit is contained in:
Felix Niklas 2016-05-03 10:42:10 +02:00
parent f0ac8d47f4
commit 657f190e7f

View file

@ -1,10 +1,12 @@
<div class="main flex">
<h1><%- @T('Caller log') %></h1>
<p><%- @T('Sorry, currently is no CTI backend enabled!') %></p>
<p><%- @T('We support') %>:</p>
<ul>
<% for backend in @backends: %>
<li><% if @isAdmin: %><a href="<%- backend.url %>"><% end %><%= backend.name %><% if @isAdmin: %></a><% end %>
<% end %>
</ul>
<div class="main flex fullscreenMessage">
<div>
<h1><%- @T('Not configured') %></h1>
<p><%- @T('Sorry, there is currently no CTI backend enabled.') %></p>
<p><%- @T('We support') %>:</p>
<div class="btn-group-vertical" role="group">
<% for backend in @backends: %>
<% if @isAdmin: %><a class="btn" href="<%- backend.url %>"><% end %><%= backend.name %><% if @isAdmin: %></a><% end %>
<% end %>
</div>
</div>
</div>