mirror of
https://github.com/zadam/trilium.git
synced 2025-11-10 23:35:50 +01:00
added note info into section container
This commit is contained in:
@@ -33,7 +33,6 @@
|
||||
<%- include('dialogs/prompt.ejs') %>
|
||||
<%- include('dialogs/confirm.ejs') %>
|
||||
<%- include('dialogs/help.ejs') %>
|
||||
<%- include('dialogs/note_info.ejs') %>
|
||||
<%- include('dialogs/link_map.ejs') %>
|
||||
<%- include('dialogs/clone_to.ejs') %>
|
||||
<%- include('dialogs/move_to.ejs') %>
|
||||
|
||||
@@ -1,45 +0,0 @@
|
||||
<style>
|
||||
#note-info-table td, #note-info-table th {
|
||||
padding: 15px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div id="note-info-dialog" class="modal fade mx-auto" tabindex="-1" role="dialog">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title">Note info</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<table id="note-info-table">
|
||||
<tr>
|
||||
<th>Note ID</th>
|
||||
<td id="note-info-note-id"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Date created</th>
|
||||
<td id="note-info-date-created"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Date modified</th>
|
||||
<td id="note-info-date-modified"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Type</th>
|
||||
<td id="note-info-type"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>MIME</th>
|
||||
<td id="note-info-mime"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button class="btn btn-primary" id="note-info-ok-button">OK</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user