1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 15:49:44 +02:00
documize/gui/app/templates/components/customize/integration-settings.hbs
2018-12-12 13:35:16 +00:00

52 lines
No EOL
1.9 KiB
Handlebars

<div class="row">
<div class="col">
<div class="view-customize">
<h1 class="admin-heading">Integrations Settings</h1>
<h2 class="sub-heading">Enable and configure third party integrations</h2>
</div>
</div>
</div>
<div class="view-customize">
<form class="mt-5">
<h2>Jira</h2>
<p>Displays issues within documentation</p>
<div class="form-group row">
<label for="jira-url" class="col-sm-4 col-form-label">URL</label>
<div class="col-sm-7">
{{focus-input id="jira-url" type="text" value=jiraCreds.url class="form-control"}}
<small class="form-text text-muted">Fully qualified domain name for your Jira instance e.g. http://jira.example.org</small>
</div>
</div>
<div class="form-group row">
<label for="jira-username" class="col-sm-4 col-form-label">Username</label>
<div class="col-sm-7">
{{input id="jira-username" type="text" value=jiraCreds.username class="form-control"}}
<small class="form-text text-muted">Your Jira login username/email</small>
</div>
</div>
<div class="form-group row">
<label for="jira-secret" class="col-sm-4 col-form-label">Password</label>
<div class="col-sm-7">
{{input id="jira-secret" type="password" value=jiraCreds.secret class="form-control"}}
<small class="form-text text-muted">Provide API Token if using Atlassian Cloud or Password when self-hosting Jira</small>
</div>
</div>
{{#if session.isGlobalAdmin}}
<h2>Trello</h2>
<p>Displays boards within documentation</p>
<div class="form-group row">
<label for="trello-key" class="col-sm-4 col-form-label">App Key</label>
<div class="col-sm-7">
{{input id="trello-key" type="text" value=trelloCreds.appKey class="form-control"}}
<small class="form-text text-muted">See <a href="https://trello.com/app-key">https://trello.com/app-key</a></small>
</div>
</div>
{{/if}}
<div class="btn btn-success bold-700 text-uppercase mt-4" {{action "onSave"}}>Save</div>
</form>
</div>