Created
October 16, 2018 11:58
-
-
Save khanof89/1bf30801d8173b970cf1eeeb7d814d73 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<tr id="{{account.id}}"> | |
<td> | |
<img src="{{ account.image_url }}" width="40px" height="40px" class="img-thumbnail"><br/> | |
<a href="https://instagram.com/ {{ account.username }}" target="_blank"> | |
{{ account.full_name }} | |
</a></td> | |
<td> | |
{{ account.comment }} | |
</td> | |
<td> | |
{{ account.followers }} | |
</td> | |
<td> | |
{{ account.follows }} | |
</td> | |
<td> | |
{{ account.percentage }} | |
</td> | |
<td> | |
{{ account.media }} | |
</td> | |
<td> | |
<button type="button" class="btn btn-xs btn-success action_taken" data-info="{{ acceptJSON }}">Followed | |
</button> | |
<button type="button" class="btn btn-xs btn-danger action_taken" data-info="{{ rejectJSON }}">Rejected | |
</button> | |
</td> | |
</tr> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment