-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
226 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<div class="control"> | ||
<div class="tags has-addons"> | ||
<span class="tag is-dark">Größe</span> | ||
<span class="tag is-info">{{size}}</span> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<div class="control"> | ||
<div class="tags has-addons"> | ||
<span class="tag is-dark">Validierung</span> | ||
{% if validation_ok %} | ||
<span class="tag is-success">erfolgreich</span> | ||
{% else %} | ||
<span class="tag is-danger"><a style="border-bottom: 0; color: #fff" href="validation_results.html">Fehler</a></span> | ||
{% endif %} | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<!DOCTYPE html> | ||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta name="description" content="{{ ld.description }}" /> | ||
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"/> | ||
<!-- OPENGRAPH --> | ||
<meta content="MITFAHR|DE|ZENTRALE" property="og:title"> | ||
<meta content="https://data.mfdz.de/img/data.jpg" property="og:image"> | ||
<meta content="1280" property="og:image:width"> | ||
<meta content="904" property="og:image:height"> | ||
<meta content="MITFAHR|DE|ZENTRALE" property="og:site_name"> | ||
<meta content="MITFAHR|DE|ZENTRALE Datensatz {{ ld.name }}" property="og:description"> | ||
<meta content="MITFAHR|DE|ZENTRALE" property="article:author"> | ||
|
||
<!-- SEO --> | ||
<meta content="MITFAHR|DE|ZENTRALE" name="author"> | ||
<meta content="MITFAHR|DE|ZENTRALE Datensatz {{ ld.name }}" name="description"> | ||
<meta content="index, follow, noodp" name="robots"> | ||
<link rel="apple-touch-icon" sizes="180x180" href="https://mfdz.de/media/site/3434498041-1603810793/apple-touch-icon-180-180.png"> | ||
<!-- TWITTER --> | ||
|
||
<meta name="twitter:card" content="summary_large_image"> | ||
<meta name="twitter:site" content="@mfdz_de"> | ||
<meta name="twitter:creator" content="@mfdz_de"> | ||
|
||
<meta content="MITFAHR|DE|ZENTRALE" property="twitter:title"> | ||
<meta content="https://data.mfdz.de/img/data.jpg " property="twitter:image"> | ||
<meta content="MITFAHR|DE|ZENTRALE Datensatz {{ ld.name }}" property="twitter:description"> | ||
|
||
<link href="https://mfdz.de/assets/css/bulma.min.css" rel="stylesheet"> | ||
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"> | ||
<link href="https://mfdz.de/assets/css/lity.min.css" rel="stylesheet"> | ||
<link href="https://mfdz.de/assets/css/slick.css" rel="stylesheet"> | ||
<link href="https://mfdz.de/assets/css/index.css" rel="stylesheet"> | ||
<link href="https://mfdz.de/assets/css/templates/default.css" rel="stylesheet"> | ||
|
||
<script type="application/ld+json"> | ||
{ | ||
"@context": "https://schema.org", | ||
"@type": "Organization", | ||
"url": "https://www.mfdz.de", | ||
"logo": "https://www.mfdz.de/media/site/3434498041-1603810793/apple-touch-icon-180-180.png" | ||
} | ||
</script> | ||
|
||
<title>MFDZ - DPC - Validierungsergebnisse {{ ld.name }}</title> | ||
</head> | ||
<body> | ||
{% include "includes/header.html" %} | ||
|
||
<main role="main"> | ||
<section class="section module-text-section"> | ||
<div class="container"> | ||
<div class="columns is-multiline is-centered"> | ||
<div class="column is-8 content module-title has-text-centered"> | ||
<h1 class="title">Validierungsergebnisse Datensatz {{ ld.name }}</h1> | ||
</div> | ||
|
||
|
||
<div class="column is-8 content"> | ||
<table> | ||
<thead><th>Validator</th><th>Beschreibung</th></thead> | ||
<tbody> | ||
{% for error in errors %} | ||
<tr><td>{{error.domain_name}}</td><td>{{error.message}}</td></tr> | ||
{% endfor %} | ||
</tbody> | ||
</table> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
</main> | ||
{% include "includes/footer.html" %} | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.