2022-12-03 16:39:33 +05:30
|
|
|
{% extends 'base' %}{% block title %} Dashboard{% endblock title %} {% block nav
|
2022-12-03 15:31:40 +05:30
|
|
|
%} {% include "auth_nav" %} {% endblock nav %} {% block main %}
|
2022-12-03 14:56:17 +05:30
|
|
|
|
|
|
|
<main class="sites__main">
|
2022-12-03 15:31:40 +05:30
|
|
|
<div class="sites__collection">
|
|
|
|
<div class="sites__actions">
|
|
|
|
<a class="sites__actions__new-site" href="{{ page.dash.site.add }}">
|
|
|
|
<button>Add New Site</button>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{% if payload|length > 0 %}
|
|
|
|
{% for deployment in payload %}
|
2022-12-05 15:48:16 +05:30
|
|
|
<a href="{{ deployment.view }}" class="site__container">
|
2022-12-03 15:31:40 +05:30
|
|
|
<div class="site__info--head">
|
|
|
|
<img
|
|
|
|
class="site__container--preview"
|
|
|
|
src="{{ deployment.site.hostname }}/favicon.ico"
|
2022-12-28 04:36:39 +05:30
|
|
|
alt="Website icon"
|
2022-12-03 15:31:40 +05:30
|
|
|
/>
|
|
|
|
<div class="site__info--column">
|
|
|
|
<p><b>{{ deployment.site.hostname }}</b></p>
|
|
|
|
<p>Deploys from {{ deployment.site.repo_url }}</p>
|
2022-12-03 14:56:17 +05:30
|
|
|
</div>
|
2022-12-03 15:31:40 +05:30
|
|
|
</div>
|
|
|
|
{% if deployment.last_update %}
|
2022-12-03 14:56:17 +05:30
|
|
|
<div class="site__info--tail">
|
2022-12-03 15:31:40 +05:30
|
|
|
<p>Last update {{ deployment.last_update.time }}</p>
|
2022-11-09 13:32:06 +05:30
|
|
|
</div>
|
2022-12-03 15:31:40 +05:30
|
|
|
{% endif %}
|
|
|
|
</a>
|
|
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
<p class="sites__banner">Nothing to show, click <a href="{{page.dash.site.add}}">here</a> to get started!</p>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</main>
|
2022-11-09 13:32:06 +05:30
|
|
|
|
2022-12-03 15:31:40 +05:30
|
|
|
{% endblock main %}
|