2014-07-15 12:56:09 -04:00
|
|
|
script(type="text/ng-template", id="publishProjectAsTemplateModalTemplate")
|
|
|
|
.modal-header
|
|
|
|
button.close(
|
|
|
|
type="button"
|
|
|
|
data-dismiss="modal"
|
|
|
|
ng-click="cancel()"
|
|
|
|
) ×
|
2014-07-31 12:07:43 -04:00
|
|
|
h3 #{translate("publish_as_template")}
|
2014-07-15 12:56:09 -04:00
|
|
|
.modal-body.modal-body-share
|
2016-01-19 08:37:11 -05:00
|
|
|
span(ng-if="project.features.templates")
|
|
|
|
span(ng-hide="problemTalkingToTemplateApi")
|
|
|
|
form()
|
|
|
|
label(for='Description') #{translate("template_description")}
|
|
|
|
.form-group
|
|
|
|
textarea.form-control(
|
|
|
|
rows=5,
|
|
|
|
name='Description',
|
|
|
|
ng-model="templateDetails.description",
|
|
|
|
value=""
|
|
|
|
)
|
|
|
|
div(ng-show="templateDetails.exists").text-center.templateDetails
|
|
|
|
| #{translate("project_last_published_at")}
|
|
|
|
strong {{templateDetails.publishedDate}}.
|
|
|
|
a(ng-href="{{templateDetails.canonicalUrl}}") #{translate("view_in_template_gallery")}.
|
2014-07-15 12:56:09 -04:00
|
|
|
|
2016-01-19 08:37:11 -05:00
|
|
|
span(ng-show="problemTalkingToTemplateApi") #{translate("problem_talking_to_publishing_service")}.
|
2014-07-15 12:56:09 -04:00
|
|
|
|
2016-01-19 08:37:11 -05:00
|
|
|
div(ng-hide="project.features.templates")
|
|
|
|
p #{translate("upgrade_to_get_feature", {feature:"templates"})}
|
2014-07-15 12:56:09 -04:00
|
|
|
|
2016-01-19 08:37:11 -05:00
|
|
|
ul.list-unstyled
|
|
|
|
li
|
|
|
|
i.fa.fa-check
|
|
|
|
| #{translate("unlimited_projects")}
|
|
|
|
|
|
|
|
li
|
|
|
|
i.fa.fa-check
|
|
|
|
| #{translate("collabs_per_proj", {collabcount:'Multiple'})}
|
|
|
|
|
|
|
|
li
|
|
|
|
i.fa.fa-check
|
|
|
|
| #{translate("full_doc_history")}
|
|
|
|
|
|
|
|
li
|
|
|
|
i.fa.fa-check
|
|
|
|
| #{translate("sync_to_dropbox")}
|
2014-07-16 08:36:02 -04:00
|
|
|
|
2016-01-19 08:37:11 -05:00
|
|
|
li
|
|
|
|
i.fa.fa-check
|
|
|
|
| #{translate("sync_to_github")}
|
|
|
|
|
|
|
|
li
|
|
|
|
i.fa.fa-check
|
|
|
|
|#{translate("compile_larger_projects")}
|
|
|
|
|
|
|
|
p(ng-controller="FreeTrialModalController").text-center
|
|
|
|
a.btn.btn-success(
|
|
|
|
href
|
|
|
|
ng-class="buttonClass"
|
|
|
|
ng-click="startFreeTrial('templates')"
|
|
|
|
) #{translate("start_free_trial")}
|
|
|
|
|
|
|
|
p.small(ng-show="startedFreeTrial")
|
|
|
|
| #{translate("refresh_page_after_starting_free_trial")}
|
2014-07-16 08:36:02 -04:00
|
|
|
|
|
|
|
.modal-footer(ng-hide="problemTalkingToTemplateApi")
|
2014-07-15 12:56:09 -04:00
|
|
|
button.btn.btn-default(
|
|
|
|
ng-click="cancel()",
|
2014-07-16 07:04:33 -04:00
|
|
|
ng-disabled="state.publishInflight || state.unpublishInflight"
|
2014-07-16 08:36:02 -04:00
|
|
|
)
|
2014-07-31 12:07:43 -04:00
|
|
|
span #{translate("cancel")}
|
2014-07-16 08:36:02 -04:00
|
|
|
|
2014-07-15 12:56:09 -04:00
|
|
|
button.btn.btn-info(
|
|
|
|
ng-click="unpublishTemplate()",
|
2014-07-16 07:04:33 -04:00
|
|
|
ng-disabled="state.publishInflight || state.unpublishInflight"
|
2014-07-16 09:18:28 -04:00
|
|
|
ng-show="templateDetails.exists"
|
2014-07-15 12:56:09 -04:00
|
|
|
)
|
2014-07-31 12:07:43 -04:00
|
|
|
span(ng-show="!state.unpublishInflight") #{translate("unpublish")}
|
|
|
|
span(ng-show="state.unpublishInflight") #{translate("unpublishing")}...
|
2014-07-16 08:36:02 -04:00
|
|
|
|
2014-07-15 12:56:09 -04:00
|
|
|
button.btn.btn-primary(
|
2014-07-16 07:04:33 -04:00
|
|
|
ng-click="publishTemplate()",
|
|
|
|
ng-disabled="state.publishInflight || state.unpublishInflight"
|
2014-07-15 12:56:09 -04:00
|
|
|
)
|
2014-07-31 12:07:43 -04:00
|
|
|
span(ng-show="!state.publishInflight && !templateDetails.exists") #{translate("publish")}
|
|
|
|
span(ng-show="!state.publishInflight && templateDetails.exists") #{translate("republish")}
|
|
|
|
span(ng-show="state.publishInflight") #{translate("publishing")}...
|