Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
{{!
2
    This file is part of Moodle - http://moodle.org/
3
 
4
    Moodle is free software: you can redistribute it and/or modify
5
    it under the terms of the GNU General Public License as published by
6
    the Free Software Foundation, either version 3 of the License, or
7
    (at your option) any later version.
8
 
9
    Moodle is distributed in the hope that it will be useful,
10
    but WITHOUT ANY WARRANTY; without even the implied warranty of
11
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
    GNU General Public License for more details.
13
 
14
    You should have received a copy of the GNU General Public License
15
    along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
16
}}
17
{{!
18
    @template core_message/message_drawer_messages_list
19
 
20
    This template will render a list of messages for the message drawer.
21
 
22
    Classes required for JS:
23
    * none
24
 
25
    Data attributes required for JS:
26
    * All data attributes are required
27
 
28
    Context variables required for this template:
29
    * userid The logged in user id
30
    * urls The URLs for the popover
31
 
32
    Example context (json):
33
    {}
34
 
35
}}
36
 
37
{{#messages}}
38
    <a
39
        href="#"
40
        class="p-2 d-flex list-group-item list-group-item-action align-items-center"
41
        data-route="view-conversation"
42
        {{#conversationid}}
43
            data-route-param-1="{{.}}"
44
            {{#frompanel}}
45
                data-route-param-2="frompanel"
46
            {{/frompanel}}
47
        {{/conversationid}}
48
        {{^conversationid}}
49
            data-route-param-1="false"
50
            data-route-param-2="create"
51
            data-route-param-3="{{userid}}"
52
            {{#frompanel}}
53
                data-route-param-4="frompanel"
54
            {{/frompanel}}
55
        {{/conversationid}}
56
        data-conversation-id="{{conversationid}}"
57
        role="button"
58
    >
59
        <img
60
            class="rounded-circle"
61
            src="{{{profileimageurl}}}"
62
            alt="{{fullname}}"
63
            aria-hidden="true"
64
            style="height: 38px"
65
        >
66
        {{#showonlinestatus}}
67
            <span class="contact-status icon-size-2 {{#isonline}}online{{/isonline}}">
68
                {{#isonline}} {{#pix}} t/online, core, {{#str}} online, core_message {{/str}} {{/pix}} {{/isonline}}
69
            </span>
70
        {{/showonlinestatus}}
71
        <div class="w-100 text-truncate ml-2">
72
            <div class="d-flex">
73
                <strong class="m-0">
74
                    {{fullname}}
75
 
76
                    <span class="{{^isblocked}}hidden{{/isblocked}}" data-region="contact-icon-blocked">
77
                        {{#pix}} t/block, core, {{#str}} contactblocked, message {{/str}} {{/pix}}
78
                    </span>
79
                </strong>
80
                <div
81
                    class="ml-auto small {{^lastmessagedate}}hidden{{/lastmessagedate}}"
82
                    data-region="last-message-date"
83
                >
84
                    {{#lastmessagedate}}
85
                        {{#userdate}} {{.}}, {{#str}} strftimedatefullshort, core_langconfig  {{/str}} {{/userdate}}
86
                    {{/lastmessagedate}}
87
                </div>
88
            </div>
89
            <p class="m-0 font-weight-light text-truncate" data-region="last-message">
90
                {{#sentfromcurrentuser}}{{#str}} you, core_message {{/str}}{{/sentfromcurrentuser}}
91
                <span>{{{lastmessage}}}</span>
92
            </p>
93
        </div>
94
 
95
        <span
96
            class="badge rounded-pill bg-primary text-white {{^unreadcount}}hidden{{/unreadcount}}"
97
            data-region="unread-count"
98
        >
99
            {{unreadcount}}
100
        </span>
101
 
102
        <div>
103
            {{> core_message/message_drawer_icon_forward }}
104
        </div>
105
    </a>
106
{{/messages}}