c502b1997b
* dummy * Renamed internationalized strings to more meaningful names * moved the new group creation state out to its own URL, so it can also be linked to by the static/plans page * Added redirect-through-login functionality from the static/plans page new-group button This includes a static non-modal login page (similar to how other sites have both a login page and login modal) The login body has been abstracted out from its modal-specific view into mixins to accomplish this * deleted bak files added by mistake * deleted scripts added by mistake * changed static/plans Create Group button text * Added form link (https://github.com/HabitRPG/habitica/issues/8674#issuecomment-303518039) Removed changes to non-EN locale files (https://github.com/HabitRPG/habitica/pull/8729#issuecomment-303555211) * reverted key name changes as per https://github.com/HabitRPG/habitica/pull/8729#issuecomment-304515534 * changed $rootScope to $scope https://github.com/HabitRPG/habitica/pull/8729#discussion_r120695874
65 lines
2.2 KiB
Plaintext
65 lines
2.2 KiB
Plaintext
mixin groupPlansBenefits()
|
|
h2.text-center=env.t('groupBenefitsTitle')
|
|
.row(style="font-size: 2rem;")
|
|
.col-md-6.col-md-offset-3.text-center=env.t('groupBenefitsDescription')
|
|
.row.row-margin
|
|
.col-md-4
|
|
h2=env.t('teamBasedTasks')
|
|
div
|
|
// shared tasks
|
|
h3
|
|
span.glyphicon.glyphicon-ok-circle(style='margin-right: 1.5rem;')
|
|
=env.t('groupBenefitOneTitle')
|
|
span=env.t('groupBenefitOneDescription')
|
|
div
|
|
// assign tasks
|
|
h3
|
|
span.glyphicon.glyphicon-ok-circle(style='margin-right: 1.5rem;')
|
|
=env.t('groupBenefitTwoTitle')
|
|
span=env.t('groupBenefitTwoDescription')
|
|
div
|
|
// claim tasks
|
|
h3
|
|
span.glyphicon.glyphicon-ok-circle(style='margin-right: 1.5rem;')
|
|
=env.t('groupBenefitThreeTitle')
|
|
span=env.t('groupBenefitThreeDescription')
|
|
div
|
|
// mark tasks
|
|
h3
|
|
span.glyphicon.glyphicon-ok-circle(style='margin-right: 1.5rem;')
|
|
=env.t('groupBenefitFourTitle')
|
|
span=env.t('groupBenefitFourDescription')
|
|
div
|
|
// group managers
|
|
h3
|
|
span.glyphicon.glyphicon-ok-circle(style='margin-right: 1.5rem;')
|
|
=env.t('groupBenefitEightTitle')
|
|
span=env.t('groupBenefitEightDescription')
|
|
|
|
.col-md-4
|
|
h2=env.t('specializedCommunication')
|
|
div
|
|
// chat privately
|
|
h3
|
|
span.glyphicon.glyphicon-ok-circle(style='margin-right: 1.5rem;')
|
|
=env.t('groupBenefitFiveTitle')
|
|
span=env.t('groupBenefitFiveDescription')
|
|
div
|
|
h3
|
|
span.glyphicon.glyphicon-ok-circle(style='margin-right: 1.5rem;')
|
|
=env.t('groupBenefitMessageLimitTitle')
|
|
span=env.t('groupBenefitMessageLimitDescription')
|
|
.col-md-4
|
|
h2=env.t('funExtras')
|
|
div
|
|
// free subscription
|
|
h3
|
|
span.glyphicon.glyphicon-ok-circle(style='margin-right: 1.5rem;')
|
|
=env.t('groupBenefitSixTitle')
|
|
span=env.t('groupBenefitSixDescription')
|
|
div
|
|
// exclusive mount
|
|
h3
|
|
span.glyphicon.glyphicon-ok-circle(style='margin-right: 1.5rem;')
|
|
=env.t('groupBenefitSevenTitle')
|