{% extends "base.html" %} {% load static %} {% block title %} - Home{% endblock %} {% block css %} {% endblock css %} {% block top-menu-left %}
Welcome to SatNOGS DB
{% endblock %} {% block content %}

New Satellites

{% for satellite in newest_sats %} {% include 'includes/cards/satellite_card.html' with satellite=satellite %} {% endfor %}

Latest Data

{% for satellite in latest_data %} {% include 'includes/cards/satellite_card.html' with satellite=satellite %} {% endfor %}

Recent Contributors

{% if latest_submitters.count %}
Data - Last 24h
{% for contributor in latest_submitters %}
{{ contributor.station }} - {{ contributor.c }} frames
{% endfor %}
{% else %}

It appears there have been no contributions in the past 24 hours. Please visit wiki.satnogs.org to learn how to contribute data!

{% endif %}
{% endblock %} {% block javascript %} {% endblock %}