mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Adding durafmt library and use it from enterprise global relay export * Allow to specify different server host and server name on smtp connections * Fixing utils/smtp tests
11 lines
364 B
HTML
11 lines
364 B
HTML
{{define "globalrelay_compliance_export_participant_row"}}
|
|
<tr>
|
|
<td class="username">@{{.Props.Username}}</td>
|
|
<td class="email">{{.Props.Email}}</td>
|
|
<td class="joined">{{.Props.Joined}}</td>
|
|
<td class="left">{{.Props.Left}}</td>
|
|
<td class="duration">{{.Props.Duration}}</td>
|
|
<td class="messages">{{.Props.NumMessages}}</td>
|
|
</tr>
|
|
{{end}}
|