| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <input type="hidden" name="nf_edit_sub" value="1">
- <div id="minor-publishing">
- <ul class="nf-sub-stats">
- <li class="nf-sub-info-seq">
- #: <strong><?php echo $seq_num; ?></strong>
- </li>
- <li class="nf-sub-info-status">
- Status: <strong><?php echo $status; ?></strong>
- <?php do_action( 'nf_sub_edit_after_status', $post ); ?>
- </li>
- <li class="nf-sub-info-form">
- Form: <strong><?php echo $form_title; ?></strong>
- </li>
- <li class="nf-sub-info-updated">
- <?php _e( 'Updated on: ', 'ninja-forms' ); ?><strong><?php echo $mod_date; ?></strong>
- <?php do_action( 'nf_sub_edit_date_modified', $post ); ?>
- </li>
- <li class="nf-sub-info-created">
- <?php _e ( 'Submitted on: ', 'ninja-forms' ); ?><strong><?php echo $sub_date; ?></strong>
- <?php do_action( 'nf_sub_edit_date_submitted', $post ); ?>
- </li>
- <li class="nf-sub-info-user"><?php _e( 'Submitted by: ', 'ninja-forms' ); ?><strong><?php echo $user; ?></strong></li>
- </ul>
- </div>
- <div id="major-publishing-actions" class="nf-sub-actions">
- <div id="delete-action"><a class="submitdelete deletion" style="color:red;" href="<?php echo get_delete_post_link( $post->ID ); ?>"><?php _e( 'Move to Trash', 'ninja-forms' ); ?></a></div>
- <input name="save" type="submit" class="button button-primary button-large nf-sub-actions-save" id="publish" accesskey="p" value="<?php _e( 'Update', 'ninja-forms' ); ?>">
- <span class="spinner"></span>
- </div>
- <!-- TODO: Move to Stylesheet. -->
- <style>
- .nf-sub-stats li {
- padding: 5px 10px 5px;
- }
- .nf-sub-info-seq:before,
- .nf-sub-info-form:before,
- .nf-sub-info-status:before,
- .nf-sub-info-created:before,
- .nf-sub-info-updated:before,
- .nf-sub-info-user:before {
- color: #82878c;
- font: 400 1.4em dashicons;
- vertical-align: top;
- padding-right: 5px;
- }
- .nf-sub-info-seq:before,
- .nf-sub-info-form:before,
- .nf-sub-info-status:before {
- /* Dashicon: Post Screen - Status */
- content: "\f173";
- }
- .nf-sub-info-created:before,
- .nf-sub-info-updated:before {
- /* Dashicon: Post Screen - Calendar */
- content: "\f145";
- }
- .nf-sub-info-user:before {
- /* Dashicon: Admin Menu - Users */
- content: "\f110";
- }
- .nf-sub-actions {
- margin: 10px -12px -12px;
- }
- .nf-sub-actions:after {
- content: "";
- display: table;
- clear: both;
- }
- .nf-sub-actions .nf-sub-actions-save {
- text-align: right;
- float: right;
- }
- </style>
|