logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git

features_panel.vue (1291B)


  1. <template>
  2. <div class="features-panel">
  3. <div class="panel panel-default base01-background">
  4. <div class="panel-heading timeline-heading base02-background base04">
  5. <div class="title">
  6. {{ $t('features_panel.title') }}
  7. </div>
  8. </div>
  9. <div class="panel-body features-panel">
  10. <ul>
  11. <li v-if="shout">
  12. {{ $t('features_panel.shout') }}
  13. </li>
  14. <li v-if="pleromaChatMessages">
  15. {{ $t('features_panel.pleroma_chat_messages') }}
  16. </li>
  17. <li v-if="gopher">
  18. {{ $t('features_panel.gopher') }}
  19. </li>
  20. <li v-if="whoToFollow">
  21. {{ $t('features_panel.who_to_follow') }}
  22. </li>
  23. <li v-if="mediaProxy">
  24. {{ $t('features_panel.media_proxy') }}
  25. </li>
  26. <li>{{ $t('features_panel.scope_options') }}</li>
  27. <li>{{ $t('features_panel.text_limit') }} = {{ textlimit }}</li>
  28. <li>{{ $t('features_panel.upload_limit') }} = {{ uploadlimit.num }} {{ $t('upload.file_size_units.' + uploadlimit.unit) }}</li>
  29. </ul>
  30. </div>
  31. </div>
  32. </div>
  33. </template>
  34. <script src="./features_panel.js"></script>
  35. <style lang="scss">
  36. .features-panel li {
  37. line-height: 24px;
  38. }
  39. </style>