mirror of
https://github.com/zulip/zulip.git
synced 2026-07-09 21:21:47 +08:00
This should make it easier to find the templates that are actually part of the core webapp, instead of having them all mixed together with the portico pages.
15 lines
735 B
HTML
15 lines
735 B
HTML
<div class="modal hide modal-bg new-style" id="message-edit-history" tabindex="-1" role="dialog"
|
|
aria-labelledby="message-history-label" aria-hidden="true">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="{{ _('Close') }}"><span aria-hidden="true">×</span></button>
|
|
<h3 id="message-history-label">{{ _('Message edit history') }}</h3>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div id="message-history-error"></div>
|
|
<div class="controls" id="message-history"></div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button class="button small rounded" id="message-history-cancel" data-dismiss="modal">{{ _("Close") }}</button>
|
|
</div>
|
|
</div>
|