mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-01-20 20:01:25 +00:00
Adds a link to badges settings in the user table, where admins can set the available badges.
105 lines
2.3 KiB
Plaintext
105 lines
2.3 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`.vue renders 1`] = `
|
|
<body>
|
|
<div>
|
|
<section
|
|
class="ds-section"
|
|
>
|
|
<div
|
|
class="ds-section-content"
|
|
>
|
|
<div
|
|
class="ds-container ds-container-x-large"
|
|
>
|
|
<div
|
|
class="ds-space"
|
|
style="margin-bottom: 32px;"
|
|
>
|
|
<h1
|
|
class="ds-heading ds-heading-h3"
|
|
>
|
|
|
|
User1
|
|
-
|
|
admin.badges.title
|
|
|
|
</h1>
|
|
|
|
<p
|
|
class="ds-text"
|
|
>
|
|
admin.badges.description
|
|
</p>
|
|
</div>
|
|
|
|
<article
|
|
class="base-card"
|
|
>
|
|
<div
|
|
class="badge-section"
|
|
>
|
|
<h4>
|
|
admin.badges.verificationBadges
|
|
</h4>
|
|
|
|
<div
|
|
class="badge-container"
|
|
>
|
|
<button
|
|
class="badge"
|
|
>
|
|
<img
|
|
alt="description-v-1"
|
|
src="icon1"
|
|
/>
|
|
</button>
|
|
<button
|
|
class="badge inactive"
|
|
>
|
|
<img
|
|
alt="description-v-2"
|
|
src="icon2"
|
|
/>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div
|
|
class="badge-section"
|
|
>
|
|
<h4>
|
|
admin.badges.trophyBadges
|
|
</h4>
|
|
|
|
<div
|
|
class="badge-container"
|
|
>
|
|
<button
|
|
class="badge inactive"
|
|
>
|
|
<img
|
|
alt="description-t-1"
|
|
src="icon3"
|
|
/>
|
|
</button>
|
|
<button
|
|
class="badge"
|
|
>
|
|
<img
|
|
alt="description-t-2"
|
|
src="icon4"
|
|
/>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!---->
|
|
</article>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</body>
|
|
`;
|