Changeset 2900
- Timestamp:
- 04/05/2016 06:42:47 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wcpt/views/applications/tracker/shortcode-application-tracker.php
r2899 r2900 20 20 <?php foreach ( $posts as $post ) : ?> 21 21 <tr> 22 <td class="city" ><?php echo esc_html( $post->post_title ); ?></td>23 <td class="applicant" ><?php echo esc_html( get_post_meta( $post->ID, 'Organizer Name', true ) ); ?></td>24 <td class="milestone" ><?php echo esc_html( $milestones[ $post->post_status ] ); ?></td>25 <td class="status" ><?php echo esc_html( $statuses[ $post->post_status ] ); ?></td>22 <td class="city" ><?php echo esc_html( $post->post_title ); ?></td> 23 <td class="applicant" ><?php echo esc_html( get_post_meta( $post->ID, 'Organizer Name', true ) ); ?></td> 24 <td class="milestone" ><?php echo esc_html( $milestones[ $post->post_status ] ); ?></td> 25 <td class="status" ><?php echo esc_html( $statuses[ $post->post_status ] ); ?></td> 26 26 <td class="last-update"><?php echo esc_html( human_time_diff( time(), $post->last_update_timestamp ) . ' ago' ); ?></td> 27 <!-- todo realign -->28 27 </tr> 29 28 <?php endforeach; ?>
Note: See TracChangeset
for help on using the changeset viewer.