mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-18 13:39:41 -04:00
Rename ‘API keys’ page to ‘API integration’
Since this page is more than just your API keys, it should be named something else. Hopefully the word ‘integration’ will give non-techical users a clue that it’s possible to use Notify without doing the CSV dance.
This commit is contained in:
@@ -111,7 +111,12 @@
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-field-heading {
|
.table-field-headings,
|
||||||
|
.table-field-headings-visible {
|
||||||
|
|
||||||
|
th {
|
||||||
|
@include bold-19;
|
||||||
|
}
|
||||||
|
|
||||||
.dashboard-table &-first {
|
.dashboard-table &-first {
|
||||||
width: 52.5%;
|
width: 52.5%;
|
||||||
|
|||||||
@@ -58,7 +58,7 @@
|
|||||||
<li><a href="{{ url_for('.manage_users', service_id=current_service.id) }}">Team members</a></li>
|
<li><a href="{{ url_for('.manage_users', service_id=current_service.id) }}">Team members</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if current_user.has_permissions(['manage_api_keys']) %}
|
{% if current_user.has_permissions(['manage_api_keys']) %}
|
||||||
<li><a href="{{ url_for('.api_keys', service_id=current_service.id) }}">API keys</a></li>
|
<li><a href="{{ url_for('.api_keys', service_id=current_service.id) }}">API integration</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
<div class="grid-row">
|
<div class="grid-row">
|
||||||
<div class="column-two-thirds">
|
<div class="column-two-thirds">
|
||||||
<h1 class="heading-large">
|
<h1 class="heading-large">
|
||||||
API keys
|
API integration
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
<div class="column-one-third">
|
<div class="column-one-third">
|
||||||
@@ -23,8 +23,8 @@
|
|||||||
keys,
|
keys,
|
||||||
empty_message="You haven’t created any API keys yet",
|
empty_message="You haven’t created any API keys yet",
|
||||||
caption="API keys",
|
caption="API keys",
|
||||||
caption_visible=False,
|
caption_visible=false,
|
||||||
field_headings=['Key name', hidden_field_heading('Action')]
|
field_headings=['API keys', hidden_field_heading('Action')],
|
||||||
) %}
|
) %}
|
||||||
{% call field() %}
|
{% call field() %}
|
||||||
{{ item.name }}
|
{{ item.name }}
|
||||||
|
|||||||
Reference in New Issue
Block a user