discourse/app/assets/javascripts/admin/addon/templates/admin-badges/index.gjs
David Taylor b29e0b6e1b
DEV: [gjs-codemod] convert admin files to gjs
Updated using `@embroider/template-tag-codemod`, plus some manual fixups.
2025-03-25 16:59:21 +00:00

11 lines
332 B
Text
Vendored

import RouteTemplate from "ember-route-template";
import { i18n } from "discourse-i18n";
export default RouteTemplate(
<template>
<section class="current-badge content-body">
<h2>{{i18n "admin.badges.badge_intro.title"}}</h2>
<p>{{i18n "admin.badges.badge_intro.description"}}</p>
</section>
</template>
);