forked from inveniosoftware/invenio-app-rdm
-
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.
ui: [inveniosoftware#855] add community-membership-request discussion…
… page
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
...i/templates/semantic-ui/invenio_requests/community-membership-request/user_dashboard.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
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' %} |