Changeset 2077 for trunk/bp-themes/bp-sn-parent/friends/requests.php
- Timestamp:
- 11/02/2009 07:54:21 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/bp-themes/bp-sn-parent/friends/requests.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-sn-parent/friends/requests.php
r1905 r2077 5 5 6 6 <div id="content"> 7 7 8 8 <div class="pagination"> 9 9 10 10 <div class="pagination-links" id="pag"> 11 11 <?php bp_friend_pagination() ?> 12 12 </div> 13 13 14 14 </div> 15 15 16 16 <h2><?php _e( 'Friendship Requests', 'buddypress' ); ?></h2> 17 17 <?php do_action( 'template_notices' ) // (error/success feedback) ?> 18 18 19 <?php do_action( 'bp_before_friend_requests_content' ) ?> 20 19 <?php do_action( 'bp_before_friend_requests_content' ) ?> 20 21 21 <?php if ( bp_has_friendships() ) : ?> 22 22 23 23 <ul id="friend-list" class="item-list"> 24 24 <?php while ( bp_user_friendships() ) : bp_the_friendship(); ?> 25 25 26 26 <li> 27 27 <?php bp_friend_avatar_thumb() ?> 28 28 <h4><?php bp_friend_link() ?></h4> 29 29 <span class="activity"><?php bp_friend_time_since_requested() ?></span> 30 31 <?php do_action( 'bp_friend_requests_item' ) ?> 32 30 31 <?php do_action( 'bp_friend_requests_item' ) ?> 32 33 33 <div class="action"> 34 34 <div class="generic-button accept"> 35 35 <a href="<?php bp_friend_accept_request_link() ?>"><?php _e( 'Accept', 'buddypress' ); ?></a> 36 36 </div> 37 38 39 37 38 39 40 40 <div class="generic-button reject"> 41 41 <a href="<?php bp_friend_reject_request_link() ?>"><?php _e( 'Reject', 'buddypress' ); ?></a> 42 42 </div> 43 44 <?php do_action( 'bp_friend_requests_item_action' ) ?> 43 44 <?php do_action( 'bp_friend_requests_item_action' ) ?> 45 45 </div> 46 46 </li> 47 47 48 48 <?php endwhile; ?> 49 49 </ul> 50 51 <?php do_action( 'bp_friend_requests_content' ) ?> 52 50 51 <?php do_action( 'bp_friend_requests_content' ) ?> 52 53 53 <?php else: ?> 54 54 … … 59 59 <?php endif;?> 60 60 61 <?php do_action( 'bp_after_friend_requests_content' ) ?> 62 61 <?php do_action( 'bp_after_friend_requests_content' ) ?> 62 63 63 </div> 64 64
Note: See TracChangeset
for help on using the changeset viewer.