Skip to content

Commit

Permalink
ui: [inveniosoftware#855] add community-membership-request discussion…
Browse files Browse the repository at this point in the history
… page
  • Loading branch information
fenekku committed May 7, 2024
1 parent f5c933f commit eb60a87
Showing 1 changed file with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{# -*- coding: utf-8 -*-

This file is part of Invenio.
Copyright (C) 2022 CERN.

Invenio is free software; you can redistribute it and/or modify it
under the terms of the MIT License; see LICENSE file for more details.
#}
{% set title = invenio_request.title %}
{% extends "invenio_requests/details/index.html" %}
{% from "invenio_requests/macros/request_header.html" import invitation_request_header %}


{% block request_header %}
{# {% set back_button_url = url_for("invenio_app_rdm_users.requests") %} #}
{{
invitation_request_header(
back_button_url=url_for("invenio_app_rdm_users.requests"),
back_button_text=_("Back to requests"),
request=invenio_request,
accepted=request_is_accepted
)
}}
{% endblock %}

{% set active_dashboard_menu_item = 'requests' %}

0 comments on commit eb60a87

Please sign in to comment.