commit
This commit is contained in:
15
templates/cert_details.html
Normal file
15
templates/cert_details.html
Normal file
@@ -0,0 +1,15 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}Szczegóły certyfikatu - SSL Monitor{% endblock %}
|
||||
{% block content %}
|
||||
<div class="container mt-4">
|
||||
<h2>Szczegóły certyfikatu</h2>
|
||||
{% if details.error %}
|
||||
<div class="alert alert-danger" role="alert">
|
||||
{{ details.error }}
|
||||
</div>
|
||||
{% else %}
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
{% endif %}
|
||||
<a href="{{ url_for('dashboard') }}" class="btn btn-secondary">Powrót</a>
|
||||
</div>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user