An actual details page?

This commit is contained in:
HackerNCoder 2022-09-23 00:28:52 +02:00
parent 1e0dfd2240
commit 4f4914790a
2 changed files with 22 additions and 2 deletions

View file

@ -12,7 +12,7 @@
<div class="col-lg-6 {% if not project.type %} order-lg-first {% endif %} ">
<div class="bg-black text-center h-100 project">
<div class="d-flex h-100">
<div class="w-100 text-center">
<div class="my-auto w-100 text-center">
<h1 class="text-white mb-5">{{ project.title }}</h4>
<a href="{{ project|url }}" class="btn btn-primary"><i class="fa fa-search" aria-hidden="true"></i> Details</a>
</div>

View file

@ -1,5 +1,25 @@
{% extends "layout.html" %}
{% block page %}
{% include 'header.html' %}
<h1>{{ this.name }}</h1>
<div class="container my-5 pt-5">
<h1 class="my-4">{{this.title}}</h1>
<div class="row">
<div class="col-md-8">
<img class="img-fluid" src="{{this.attachments.images.first()|url}}" alt="">
</div>
<div class="col-md-4">
<h3 class="my-3">Project Description</h3>
<p>{{project.body}}</p>
<h3 class="my-3">Weblate status</h3>
<a href="https://littleroot.net/weblate/engage/{{ project.weblate }}/">
<img src="https://littleroot.net/weblate/widgets/{{ project.weblate }}/-/multi-auto.svg" alt="Translation status" />
</a>
<h3 class="my-3">Project Details</h3>
<div class="w-100 text-center">
<a href="https://littleroot.net/weblate/engage/{{ project.weblate }}/" class="btn btn-primary"><i class="fa fa-language" aria-hidden="true"></i> Translate</a>
<a href="{{this.website}}" class="btn btn-primary"><i class="fa fa-external-link" aria-hidden="true"></i> Download</a>
</div>
</div>
</div>
</div>
{% endblock %}