mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
23 lines
575 B
HTML
23 lines
575 B
HTML
{% extends "layout_vue.html" %}
|
|
|
|
{%- block title -%}
|
|
{{ _('Organization invitations') }}
|
|
{%- endblock -%}
|
|
|
|
{% block component_scripts %}
|
|
<script src="{{ url_for('static', filename='vue/user-organization-invitations/read.vue.js')}}"></script>
|
|
{% endblock %}
|
|
|
|
{% block component_definitions %}
|
|
Vue.component("UserOrganizationInvitationRead", UserOrganizationInvitationRead);
|
|
{% endblock %}
|
|
|
|
{% block vue_routes %}
|
|
const routes = [
|
|
{
|
|
path: "/user/organization-invitations/:organization_invitation_id",
|
|
component: UserOrganizationInvitationRead,
|
|
},
|
|
];
|
|
{% endblock %}
|