Skip to content

Instantly share code, notes, and snippets.

@mickaelandrieu
Last active January 4, 2016 17:29
Show Gist options
  • Save mickaelandrieu/8654370 to your computer and use it in GitHub Desktop.
Save mickaelandrieu/8654370 to your computer and use it in GitHub Desktop.
<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