mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
A few things added with this commit: - aurweb.packages.util - A module providing package and pkgbase helpers. - aurweb.template.register_filter - A decorator that can be used to register a filter: @register_filter("some_filter") def f(): pass Additionally, template partials have been split off a bit differently. Changes: - /packages/{name} is defined in packages/show.html. - partials/packages/package_actions.html is now partials/packages/actions.html. - partials/packages/details.html has been added. - partials/packages/comments.html has been added. - partials/packages/comment.html has been added. - models.dependency_type additions: name and id constants. - models.relation_type additions: name and id constants. - models.official_provider additions: base official url constant. Signed-off-by: Kevin Morris <kevr@0cost.org>
48 lines
2.4 KiB
HTML
48 lines
2.4 KiB
HTML
<h4 id="comment-{{ comment.ID }}" class="comment-header">
|
|
{% set commented_at = comment.CommentTS | dt | as_timezone(timezone) %}
|
|
{% set view_account_info = 'View account information for %s' | tr | format(comment.User.Username) %}
|
|
{{
|
|
"%s commented on %s" | tr | format(
|
|
('<a href="/account/%s" title="%s">%s</a>' | format(
|
|
comment.User.Username,
|
|
view_account_info,
|
|
comment.User.Username
|
|
)) if request.user.is_authenticated() else
|
|
(comment.User.Username),
|
|
'<a href="#comment-%s" class="date">%s</a>' | format(
|
|
comment.ID,
|
|
commented_at.strftime("%Y-%m-%d %H:%M")
|
|
)
|
|
)
|
|
| safe
|
|
}}
|
|
{% if is_maintainer %}
|
|
<form class="delete-comment-form" method="post" action="/pkgbase/{{ pkgname }}/">
|
|
<fieldset style="display:inline;">
|
|
<input type="hidden" name="action" value="do_DeleteComment" />
|
|
<input type="hidden" name="comment_id" value="{{ comment.ID }}"/>
|
|
<input type="hidden" name="return_to" value="/pkgbase/{{ pkgname }}/"/>
|
|
<input type="image" class="delete-comment" src="/images/x.min.svg" width="11" height="11" alt="{{ 'Delete comment' | tr }}" title="{{ 'Delete comment' | tr }}" name="submit" value="1" />
|
|
</fieldset>
|
|
</form>
|
|
<a href="/pkgbase/{{ pkgname }}/edit-comment/?comment_id={{ comment.ID }}" class="edit-comment" title="Edit comment"><img src="/images/pencil.min.svg" alt="Edit comment" width="11" height="11"></a>
|
|
{% endif %}
|
|
<form class="pin-comment-form" method="post" action="/pkgbase/{{ pkgname }}/">
|
|
<fieldset style="display:inline;">
|
|
<input type="hidden" name="action" value="do_PinComment"/>
|
|
<input type="hidden" name="comment_id" value="{{ comment.ID }}"/>
|
|
<input type="hidden" name="package_base" value="{{ pkgbase_id }}"/>
|
|
<input type="hidden" name="return_to" value="/pkgbase/{{ pkgname }}/"/>
|
|
<input type="image" class="pin-comment" src="/images/pin.min.svg" width="11" height="11" alt="{{ 'Pin comment' | tr }}" title="{{ 'Pin comment' | tr }}" name="submit" value="1"/>
|
|
</fieldset>
|
|
</form>
|
|
</h4>
|
|
<div id="comment-{{ comment.ID }}-content" class="article-content">
|
|
<div>
|
|
{% if comment.RenderedComment %}
|
|
{{ comment.RenderedComment | safe }}
|
|
{% else %}
|
|
{{ comment.Comments }}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|