Changeset 2846
- Timestamp:
- 03/29/2016 11:11:22 PM (10 years ago)
- Location:
- sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt
- Files:
-
- 3 edited
-
applications/tracker.php (modified) (1 diff)
-
javascript/applications/wordcamp.js (modified) (1 diff)
-
views/applications/tracker/shortcode-application-tracker.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt/applications/tracker.php
r2845 r2846 68 68 } 69 69 70 /* todo drop a few fields on responsive layouts so it fits */ 70 /* Show extra data on large screens */ 71 .application-tracker .milestone, 72 .application-tracker .applicant { 73 display: none; 74 } 75 76 @media screen and ( min-width: 750px ) { 77 .application-tracker .applicant { 78 display: table-cell; 79 } 80 } 81 82 @media screen and ( min-width: 850px ) { 83 .application-tracker .milestone { 84 display: table-cell; 85 } 86 } 71 87 </style> 72 88 -
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt/javascript/applications/wordcamp.js
r2797 r2846 1 /* todo2 *3 * cleanup4 * make sure all this runs at startup, b/c have to set initial values after refresh5 * blur instead of click b/c keyboard nav ?6 *7 * maybe strict mode, try/catch, module pattern, etc8 */9 10 1 // Modified from https://polldaddy.com/js/survey/jane-theme.js 11 2 -
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt/views/applications/tracker/shortcode-application-tracker.php
r2828 r2846 9 9 <thead> 10 10 <tr> 11 <th >City</th>12 <th >Applicant</th>13 <th >Milestone</th>14 <th >Status</th>15 <th >Last Update</th>11 <th class="city" >City</th> 12 <th class="applicant" >Applicant</th> 13 <th class="milestone" >Milestone</th> 14 <th class="status" >Status</th> 15 <th class="last-update">Last Update</th> 16 16 </tr> 17 17 </thead> … … 20 20 <?php foreach ( $posts as $post ) : ?> 21 21 <tr> 22 <td><?php echo esc_html( $post->post_title ); ?></td> 23 <td><?php echo esc_html( get_post_meta( $post->ID, 'Organizer Name', true ) ); ?></td> 24 <td><?php echo esc_html( $milestones[ $post->post_status ] ); ?></td> 25 <td><?php echo esc_html( $statuses[ $post->post_status ] ); ?></td> 26 <td><?php echo esc_html( get_last_status_update_time_diff( $post->ID ) ); ?></td> 27 28 <!-- todo realign --> 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 <td class="last-update"><?php echo esc_html( get_last_status_update_time_diff( $post->ID ) ); ?></td> 29 27 </tr> 30 28 <?php endforeach; ?>
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)