# Total Domains
total_domains : int
+ # Updated At
+ updated_at : datetime.datetime | None
+
def __eq__(self, other):
if isinstance(other, self.__class__):
return self.slug == other.slug
{{ list }}
</h1>
- {# Description #}
- {% if list.description %}
- <h6 class="subtitle">
+ <h6 class="subtitle">
+ <div class="tag is-info">
+ {{ list.license }}
+ </div>
+
+ {# Description #}
+ {% if list.description %}
{{ list.description }}
- </h6>
- {% end %}
+ {% end %}
+ </h6>
+ </div>
+ </div>
+ </section>
+
+ {# Information #}
+ <section class="section">
+ <div class="container">
+ <div class="level">
+ <div class="level-item has-text-centered">
+ <div>
+ <p class="heading">
+ {{ _("Domains Listed") }}
+ </p>
+ <p class="title">
+ {{ format_number(list.total_domains) }}
+ </p>
+ </div>
+ </div>
+
+ <div class="level-item has-text-centered">
+ <div>
+ <p class="heading">
+ {{ _("Last Updated") }}
+ </p>
+ <p class="title">
+ {{ locale.format_date(list.updated_at, shorter=True) }}
+ </p>
+ </div>
+ </div>
</div>
</div>
</section>
{% if sources %}
<section class="section">
<div class="container">
- <h5 class="title is-5">{{ _("Sources") }}</h5>
+ <h3 class="title is-3">{{ _("Sources") }}</h3>
<table class="table is-fullwidth is-striped is-hoverable is-narrow">
<thead>