{% extends 'admin_base.html.twig' %} {% block body %}
Total blogs

{{ blogsCount }}

Total articles

{{ postsCount }}

Sponsored articles

{{ sponsoredPostsCount }}

Not sponsored

{{ notSponsoredPostsCount }}

Latest blogs
{% for blog in latestBlogs %}
{% include 'admin/partials/_image_thumb.html.twig' with { image: blog.image, thumb: 'blog_icon', class: 'img-sm rounded-circle' } %}

{{ blog.name }}

{{ blog.createdAt | ago }}
{% endfor %}

Sponsored stat

Daily articles graph

Latest posts

{% for post in latestPosts %} {% if post.sponsored %} {% set color = 'danger' %} {% set label = 'Sponsored' %} {% else %} {% set color = 'success' %} {% set label = 'Not sponsored' %} {% endif %} {% endfor %}
Id Title Blog Country Time Status
{{ post.id }} {{ post.title }} {{ post.blog.name }} {{ post.blog.country }} {{ post.createdAt | ago }}
{{ label }}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}