View file profile/templates/profile/includes/followers-ls-item.html

File size: 1.09Kb
<div class="followers--ls__item pg_folw_sugg_carousel" id="<?php echo($udata['user_id']) ?>">
	<div class="item">
		<div class="avatar">
			<img src="<?php echo(media($udata['avatar'])) ?>" alt="Picture">
			<div class="valign uname">
				<a href="<?php echo(un2url($udata['username'])) ?>" data-ajax="ajax_loading.php?app=profile&apph=profile&uname=<?php echo($udata['username']) ?>"><h4><?php echo($udata['username']) ?></h4></a>
			</div>
		</div>
		<div class="button">
			<?php if (IS_LOGGED && $udata['user_id'] != $context['user']['user_id']) {
			if ($udata['is_following'] == true) { ?>
				<button class="btn btn-mat btn-following" onclick="follow(<?php echo($udata['user_id']) ?>,this);"><span>{{LANG following}}</span></button>
			<?php } else{ ?>
				<button class="btn btn-mat" onclick="follow(<?php echo($udata['user_id']) ?>,this);"><span>{{LANG follow}}</span></button>
			<?php } } elseif (IS_LOGGED === false) { ?>
				<button class="btn btn-mat" onclick="follow(<?php echo($udata['user_id']) ?>,this);"><span>{{LANG follow}}</span></button>
			<?php } ?>
		</div>
	</div>
</div>