]> git.ipfire.org Git - ipfire.org.git/blame - src/templates/talk/confirm-hangup.html
Introduce autotools
[ipfire.org.git] / src / templates / talk / confirm-hangup.html
CommitLineData
40818cf2
MT
1{% extends "../base.html" %}
2
3{% block title %}{{ _("Hangup Channel") }}{% end block %}
4
5{% block body %}
6 <form action="" method="POST">
7 {% raw xsrf_form_html() %}
8
9 <div class="row">
10 <div class="col-md-4 col-md-offset-4">
11 <div class="well well-sm ac">
12 <h4>{{ _("Hangup Channel") }}</h4>
13
14 <p>
15 {{ _("You are about to hangup this channel") }}
16 </p>
17
18 <hr>
19
20 <p>
21 {% module TalkContact(channel.caller, name=channel.caller_name) %}
22 </p>
23
24 <p>
25 <i class="glyphicon glyphicon-arrow-right text-success"></i>
26 </p>
27
28 <p>
29 {% module TalkContact(channel.callee, application=channel.application) %}
30 </p>
31
32 <br>
33
34 <input class="btn btn-danger btn-block" type="submit" value="{{ _("Hangup Channel") }}">
35 </div>
36 </div>
37 </div>
38 </form>
39{% end block %}