Last active
January 4, 2016 17:29
-
-
Save mickaelandrieu/8654370 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
<table class="table table-bordered"> | |
<thead> | |
<tr> | |
<th>Domain</th> | |
<th class="visible-lg">Url</th> | |
<th>Position</th> | |
<th>Google PageRank/ Alexa PageRank</th> | |
<th>Actions</th> | |
</tr> | |
</thead> | |
<tbody> | |
{% for website in analysis.websites %} | |
<tr class="{% if analysis.campaign.selectedDomain in website.domain %}success{% endif %}"> | |
<td>{{ website.domain }}</td> | |
<td class="visible-lg">{{ website.url }}</td> | |
<td>{{ website.position }}</td> | |
<td>{{ website.ranks }}</td> | |
<td><a {{ "Statistiques"|tooltip }} href="{{ path('website_show', { 'id': website.id }) }}"><i class="fa fa-eye"></i></a></td> | |
</tr> | |
{% endfor %} | |
</tbody> | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment