Skip to content

Commit

Permalink
fix: Add Application titles in Admin Portlets - MEED-8171 - Meeds-io/…
Browse files Browse the repository at this point in the history
  • Loading branch information
boubaker authored and exo-swf committed Jan 17, 2025
1 parent bec181c commit be4e916
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,7 @@ layout.previewAsASpace=View as a space
layout.searchForASpace=Search for a space
layout.noSpaceFound=No matching space found

sectionTemplates.title=Section Templates
sectionTemplates.filter.placeholder=Filter by name, description
layout.sectionTemplates.add=Add
layout.sectionTemplate.drawerTitie.add=Add template
Expand Down Expand Up @@ -410,6 +411,7 @@ layout.section.category.blank=Blank Templates
layout.section.category.default=Default Templates
layout.section.category.custom=Customized Templates
siteTemplates.title=Site Templates
siteTemplates.filter.placeholder=Filter by name, description
layout.siteTemplates.add=Add
layout.siteTemplate.drawerTitie.add=Add template
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
siteManagement.title=Sites
siteManagement.label.portal=Site
siteManagement.label.group=Site of group
siteManagement.label.group_template=Group Template
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@
-->
<template>
<v-app>
<main class="application-body">
<main class="application-body pb-5">
<h4 class="text-title px-5 pt-5 ma-0">
{{ $t('sectionTemplates.title') }}
</h4>
<section-template-toolbar
ref="toolbar"
:tab-name="tabName"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
must-sort
disable-pagination
hide-default-footer
class="application-body sectionTemplatesTable px-5 pb-5">
class="application-body sectionTemplatesTable px-5">
<template slot="item" slot-scope="props">
<section-template-item
:key="props.item.id"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@
-->
<template>
<v-app class="siteManagementApplication">
<v-main class="application-body">
<v-main class="application-body pb-5">
<h4 class="text-title px-5 pt-5 ma-0">
{{ $t('siteManagement.title') }}
</h4>
<site-management-toolbar
ref="toolbar"
@site-filter="keyword = $event" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
:must-sort="!$root.isMobile"
disable-pagination
hide-default-footer
class="application-body sitesTable px-5 pb-5">
class="application-body sitesTable px-5">
<template slot="item" slot-scope="props">
<site-management-item
:key="props.item.id"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,16 @@
-->
<template>
<v-app>
<main class="application-body">
<v-main class="application-body pb-5">
<h4 class="text-title px-5 pt-5 ma-0">
{{ $t('siteTemplates.title') }}
</h4>
<site-template-toolbar
ref="toolbar"
@site-template-filter="keyword = $event" />
<site-template-list
:keyword="keyword" />
</main>
</v-main>
<site-template-add-drawer />
<site-template-drawer />
<layout-image-illustration-preview />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
must-sort
disable-pagination
hide-default-footer
class="application-body siteTemplatesTable px-5 pb-5">
class="application-body siteTemplatesTable px-5">
<template slot="item" slot-scope="props">
<site-template-item
:key="props.item.id"
Expand Down

0 comments on commit be4e916

Please sign in to comment.