contentdb/app/templates/threads/view.html

124 lines
4.5 KiB
HTML
Raw Normal View History

2018-06-11 23:49:25 +02:00
{% extends "base.html" %}
{% block title %}
2021-08-17 22:16:43 +02:00
{%- if thread.package -%}
{%- if thread.review -%}
2023-04-15 03:37:58 +02:00
{%- if thread.review.rating > 3 -%}
2021-08-17 22:16:43 +02:00
{%- set rating = "👍" -%}
2023-04-15 03:37:58 +02:00
{%- elif thread.review.rating < 3 -%}
2021-08-17 22:16:43 +02:00
{%- set rating = "👎" -%}
2023-04-15 03:37:58 +02:00
{%- else -%}
{%- set rating = "-" -%}
2021-08-17 22:16:43 +02:00
{%- endif -%}
{%- endif -%}
{{ rating }} {{ thread.title }} - {{ thread.package.title }}
2021-08-17 22:16:43 +02:00
{%- else -%}
{{ thread.title }}
{%- endif -%}
{% endblock %}
2023-04-30 01:53:55 +02:00
{% block description -%}
{{ thread.get_description() }}
{%- endblock %}
2021-08-17 22:16:43 +02:00
{% block headextra %}
<meta name="og:image" content="{{ thread.author.get_profile_pic_url() }}"/>
2018-06-11 23:49:25 +02:00
{% endblock %}
{% block scriptextra %}
<script src="/static/quick_review_voting.js"></script>
{% endblock %}
2018-06-11 23:49:25 +02:00
{% block content %}
2018-12-22 21:13:43 +01:00
{% if current_user.is_authenticated %}
{% if current_user in thread.watchers %}
<form method="post" action="{{ thread.get_unsubscribe_url() }}" class="float-right">
2018-12-22 21:13:43 +01:00
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
2022-01-08 00:27:00 +01:00
<input type="submit" class="btn btn-primary" value="{{ _('Unsubscribe') }}" />
2018-12-22 21:13:43 +01:00
</form>
{% else %}
<form method="post" action="{{ thread.get_subscribe_url() }}" class="float-right">
2018-12-22 21:13:43 +01:00
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
2022-01-08 00:27:00 +01:00
<input type="submit" class="btn btn-primary" value="{{ _('Subscribe') }}" />
2018-12-22 21:13:43 +01:00
</form>
{% endif %}
{% if thread.check_perm(current_user, "DELETE_THREAD") %}
<a href="{{ url_for('threads.delete_thread', id=thread.id) }}" class="float-right mr-2 btn btn-danger">{{ _('Delete') }}</a>
{% endif %}
{% if thread.review and thread.review.check_perm(current_user, "DELETE_REVIEW") and current_user.username != thread.review.author.username %}
<form method="post" action="{{ thread.review.get_delete_url() }}" class="float-right mr-2">
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
<input type="submit" class="btn btn-danger" value="{{ _('Convert to Thread') }}" />
</form>
{% endif %}
{% if thread.check_perm(current_user, "LOCK_THREAD") %}
2020-07-11 02:34:51 +02:00
{% if thread.locked %}
<form method="post" action="{{ url_for('threads.set_lock', id=thread.id, lock=0) }}" class="float-right mr-2">
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
<input type="submit" class="btn btn-secondary" value="{{ _('Unlock') }}" />
2020-07-11 02:34:51 +02:00
</form>
{% else %}
<form method="post" action="{{ url_for('threads.set_lock', id=thread.id, lock=1) }}" class="float-right mr-2">
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
<input type="submit" class="btn btn-secondary" value="{{ _('Lock') }}" />
2020-07-11 02:34:51 +02:00
</form>
{% endif %}
{% endif %}
2018-12-22 21:13:43 +01:00
{% endif %}
{% if current_user == thread.author and thread.review %}
<a class="btn btn-primary ml-1 float-right mr-2"
2023-06-18 23:00:24 +02:00
href="{{ thread.review.package.get_url('packages.review') }}">
2021-02-28 06:16:15 +01:00
<i class="fas fa-pen"></i>
{{ _("Edit Review") }}
</a>
{% endif %}
2020-07-09 05:10:09 +02:00
<h1>
{% if thread.review %}
2023-04-15 03:37:58 +02:00
{% if thread.review.rating > 3 %}
<i class="fas fa-thumbs-up mr-2" style="color:#6f6;"></i>
2023-04-15 03:37:58 +02:00
{% elif thread.review.rating < 3 %}
2020-07-09 05:10:09 +02:00
<i class="fas fa-thumbs-down mr-2" style="color:#f66;"></i>
2023-04-15 03:37:58 +02:00
{% else %}
<i class="fas fa-minus mr-2" style="color:#999"></i>
2020-07-09 05:10:09 +02:00
{% endif %}
2018-07-28 16:30:59 +02:00
{% endif %}
2020-07-09 05:10:09 +02:00
{% if thread.private %}&#x1f512; {% endif %}{{ thread.title }}
</h1>
{% if thread.package %}
<p>
{{ _("Package") }}: <a href="{{ thread.package.get_url('packages.view') }}">{{ thread.package.title }}</a>
2020-07-09 05:10:09 +02:00
</p>
2018-06-11 23:49:25 +02:00
{% endif %}
{% if thread.private %}
<aside class="row">
<div class="col-md-9">
<i>
2022-04-23 22:37:03 +02:00
{{ _("This thread is only visible to its creator, package maintainers, users of Approver rank or above, and @mentioned users.") }}
</i>
</div>
<div class="col-md-3">
<div class="d-flex flex-row justify-content-end flex-wrap align-items-center" style="gap: 0.5em;">
2022-04-23 22:37:03 +02:00
<span class="text-muted mr-2" title="{{ _('This thread is visible to the following users') }}">
{{ _("Visible to:") }}
</span>
{% for viewer in thread.get_visible_to() %}
<a href="{{ url_for('users.profile', username=viewer.username) }}" title="{{ viewer.display_name }}">
<img style="max-height: 2em;" src="{{ viewer.get_profile_pic_url() }}" alt="{{ viewer.display_name }}" />
</a>
{% endfor %}
<a href="{{ url_for('users.list_all') }}" title="{{ _('Plus approvers and editors') }}">
+ <i class="fas fa-user-check"></i>
</a>
</div>
</div>
</aside>
2018-06-11 23:49:25 +02:00
{% endif %}
{% from "macros/threads.html" import render_thread %}
2022-04-23 21:05:19 +02:00
{{ render_thread(thread, current_user, form) }}
2018-06-11 23:49:25 +02:00
{% endblock %}