mattermost-community-enterp.../templates/globalrelay_compliance_export_message.html
Claude ec1f89217a Merge: Complete Mattermost Server with Community Enterprise
Full Mattermost server source with integrated Community Enterprise features.
Includes vendor directory for offline/air-gapped builds.

Structure:
- enterprise-impl/: Enterprise feature implementations
- enterprise-community/: Init files that register implementations
- enterprise/: Bridge imports (community_imports.go)
- vendor/: All dependencies for offline builds

Build (online):
  go build ./cmd/mattermost

Build (offline/air-gapped):
  go build -mod=vendor ./cmd/mattermost

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-17 23:59:07 +09:00

17 lines
837 B
HTML

{{define "globalrelay_compliance_export_message"}}
<li class="message">
<span class="post_id">{{.Props.PostId}}</span>
<span class="sent_time">{{.Props.SentTime}}</span>
<span class="username">@{{.Props.Username}}</span>
<span class="userid">{{.Props.UserId}}</span>
<span class="postusername">{{.Props.PostUsername}}</span>
<span class="usertype">{{.Props.UserType}}</span>
<span class="email">({{.Props.Email}})</span>
<span class="message">{{.Props.Message}}</span>{{ if .Props.PreviewsPost }}
<span class="previews_post">{{.Props.PreviewsPost}}</span>{{ end }}{{ if .Props.UpdateType }}
<span class="update_type">{{.Props.UpdateType}}</span>
<span class="update_time">{{.Props.UpdateTime}}</span>
<span class="edited_new_msg_id">{{.Props.EditedNewMsgId}}</span>{{ end }}
</li>
{{end}}