mirror of
https://github.com/documize/community.git
synced 2025-07-23 07:09:43 +02:00
33 lines
No EOL
1.5 KiB
Handlebars
33 lines
No EOL
1.5 KiB
Handlebars
<div class="view-customize">
|
|
<form>
|
|
<h2>Jira</h2>
|
|
<p>Displays issues within documentation</p>
|
|
<div class="form-group">
|
|
<label for="jira-url">URL</label>
|
|
{{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 class="form-group">
|
|
<label for="jira-username">Username</label>
|
|
{{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 class="form-group">
|
|
<label for="jira-secret">Password</label>
|
|
{{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>
|
|
|
|
{{#if session.isGlobalAdmin}}
|
|
<h2>Trello</h2>
|
|
<p>Displays boards within documentation</p>
|
|
<div class="form-group">
|
|
<label for="trello-key">App Key</label>
|
|
{{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>
|
|
{{/if}}
|
|
|
|
{{ui/ui-button color=constants.Color.Green light=true icon=constants.Icon.Integrations label=constants.Label.Save onClick=(action "onSave")}}
|
|
</form>
|
|
</div> |