summaryrefslogtreecommitdiffstats
path: root/templates/globalrelay_compliance_export.html
diff options
context:
space:
mode:
authorDerrick Anderson <derrick@andersonwebstudio.com>2018-02-12 16:13:01 -0500
committerDerrick Anderson <derrick@andersonwebstudio.com>2018-02-12 16:13:01 -0500
commit32c1f7be239ddb19d6c59b114d9ae1a543f8ba9c (patch)
tree5e1653318a6a14bcad80025793adab0f700deed9 /templates/globalrelay_compliance_export.html
parent62efb1df754bfe6b10a3c17ca6f89fd33b991f56 (diff)
parentc209e4457457edc042f063390c9a222a694f3a6d (diff)
downloadchat-32c1f7be239ddb19d6c59b114d9ae1a543f8ba9c.tar.gz
chat-32c1f7be239ddb19d6c59b114d9ae1a543f8ba9c.tar.bz2
chat-32c1f7be239ddb19d6c59b114d9ae1a543f8ba9c.zip
Merge branch 'release-4.7-revertmaster' into release-4.7
Diffstat (limited to 'templates/globalrelay_compliance_export.html')
-rw-r--r--templates/globalrelay_compliance_export.html91
1 files changed, 0 insertions, 91 deletions
diff --git a/templates/globalrelay_compliance_export.html b/templates/globalrelay_compliance_export.html
deleted file mode 100644
index 91028d11c..000000000
--- a/templates/globalrelay_compliance_export.html
+++ /dev/null
@@ -1,91 +0,0 @@
-{{define "globalrelay_compliance_export"}}
-<style type="text/css">
- body {
- font-family:Arial, sans-serif;
- font-size:14px;
- font-weight:normal;
- }
-
- .summary-list ul {
- padding: 0px;
- list-style:none;
- }
- .summary-list li {
- display: inline;
- padding: 0 1em 0 0;
- }
- .summary-list .bold {
- font-weight: bold;
- }
-
- .participants {
- border-collapse:collapse;
- border-spacing:0;
- }
- .participants td {
- padding:10px 5px;
- border:1px solid black;
- overflow:hidden;
- text-align: center;
- word-break:normal;
- }
- .participants th {
- padding:10px 5px;
- border:1px solid black;
- overflow:hidden;
- word-break:normal;
- }
- .participants th,td {
- vertical-align:top
- }
-
- .message-list ul {
- list-style:none;
- padding: 0;
- }
- .message-list li {
- padding: 0 0 1em 0;
- }
- .message .sent_time {
- font-weight:bold;
- }
- .message .username {
- font-weight:bold;
- }
- .message .email {
- font-weight: bold;
- }
-</style>
-
-<h1>Mattermost Compliance Export</h1>
-
-<h2>Conversation Summary</h2>
-<div class="summary-list">
- <ul>
- <li><span class="bold">Channel:&nbsp;</span>{{.Props.ChannelName}}</li>
- <li><span class="bold">Started:&nbsp;</span>{{.Props.Started}}</li>
- <li><span class="bold">Ended:&nbsp;</span>{{.Props.Ended}}</li>
- <li><span class="bold">Duration:&nbsp;</span>{{.Props.Duration}}&nbsp;Minutes</li>
- </ul>
-</div>
-<table class="participants">
- <tr>
- <th class="username">Username<br></th>
- <th class="email">Email</th>
- <th class="joined">Joined</th>
- <th class="left">Left</th>
- <th class="duration">Duration</th>
- <th class="messages">Messages</th>
- </tr>
- {{.Props.ParticipantRows}}
-</table>
-
-<h2>Messages</h2>
-<div class="message-list">
- <ul>
- {{.Props.Messages}}
- </ul>
-</div>
-
-<p>Exported on {{.Props.ExportDate}}</p>
-{{end}} \ No newline at end of file