-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
170 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,33 @@ | ||
<div class="md:grid md:grid-cols-10 gap-4"> | ||
<div class="col-span-2"> | ||
{{ panels|raw }} | ||
<div class="mb-4 lg:grid lg:grid-cols-2 lg:gap-4"> | ||
<div class="mb-4 md:grid md:grid-cols-2 md:gap-2 lg:mb-0"> | ||
{% if all_keys != 0 %} | ||
<div>{{ include('components/search_input.twig') }}</div> | ||
{% endif %} | ||
</div> | ||
|
||
<div class="col-span-8"> | ||
<div class="mb-4 lg:grid lg:grid-cols-2 lg:gap-4"> | ||
<div class="mb-4 md:grid md:grid-cols-2 md:gap-2 lg:mb-0"> | ||
{% if all_keys != 0 %} | ||
<div>{{ include('components/search_input.twig') }}</div> | ||
{% endif %} | ||
</div> | ||
|
||
<div class="lg:flex lg:justify-end"> | ||
{{ include('partials/keys_buttons.twig', { | ||
import_btn: true, | ||
add_new_btn: true, | ||
}) }} | ||
</div> | ||
</div> | ||
|
||
{{ include('partials/import_form.twig', { | ||
expire_default: '0', | ||
expire_max: 2592000, | ||
key_desc: 'The text value in the .txt file.', | ||
}) }} | ||
|
||
{{ include('partials/keys_table.twig', { | ||
head_items: [ | ||
{'title': 'Key'}, | ||
{'title': 'Hits', 'class': 'w-16'}, | ||
{'title': 'Last used', 'class': 'w-32'}, | ||
{'title': 'Created', 'class': 'w-40 hidden md:table-cell'}, | ||
{'title': 'TTL', 'class': 'w-32'}, | ||
], | ||
classes: { | ||
4: 'hidden md:table-cell', | ||
}, | ||
<div class="lg:flex lg:justify-end"> | ||
{{ include('partials/keys_buttons.twig', { | ||
import_btn: true, | ||
add_new_btn: true, | ||
}) }} | ||
</div> | ||
</div> | ||
|
||
{{ include('partials/import_form.twig', { | ||
expire_default: '0', | ||
expire_max: 2592000, | ||
key_desc: 'The text value in the .txt file.', | ||
}) }} | ||
|
||
{{ include('partials/keys_table.twig', { | ||
head_items: [ | ||
{'title': 'Key'}, | ||
{'title': 'Hits', 'class': 'w-16'}, | ||
{'title': 'Last used', 'class': 'w-32'}, | ||
{'title': 'Created', 'class': 'w-40 hidden md:table-cell'}, | ||
{'title': 'TTL', 'class': 'w-32'}, | ||
], | ||
classes: { | ||
4: 'hidden md:table-cell', | ||
}, | ||
}) }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,28 @@ | ||
<div class="md:grid md:grid-cols-10 gap-4"> | ||
<div class="col-span-2"> | ||
{{ select|raw }} | ||
{{ panels|raw }} | ||
<div class="mb-4 lg:grid lg:grid-cols-2 lg:gap-4"> | ||
<div class="mb-4 md:grid md:grid-cols-2 md:gap-2 lg:mb-0"> | ||
{% if all_keys != 0 %} | ||
<div>{{ include('components/search_input.twig') }}</div> | ||
{% endif %} | ||
</div> | ||
|
||
<div class="col-span-8"> | ||
<div class="mb-4 lg:grid lg:grid-cols-2 lg:gap-4"> | ||
<div class="mb-4 md:grid md:grid-cols-2 md:gap-2 lg:mb-0"> | ||
{% if all_keys != 0 %} | ||
<div>{{ include('components/search_input.twig') }}</div> | ||
{% endif %} | ||
</div> | ||
|
||
<div class="lg:flex lg:justify-end"> | ||
{{ include('partials/keys_buttons.twig', { | ||
import_btn: true, | ||
add_new_btn: true, | ||
}) }} | ||
</div> | ||
</div> | ||
|
||
{{ include('partials/import_form.twig', { | ||
expire_default: '0', | ||
expire_max: 2592000, | ||
key_desc: 'The text value in the .txt file.', | ||
}) }} | ||
|
||
{{ include('partials/keys_table.twig', { | ||
head_items: [ | ||
{'title': 'Key'}, | ||
{'title': 'Last used', 'class': 'w-32'}, | ||
{'title': 'TTL', 'class': 'w-32'}, | ||
], | ||
<div class="lg:flex lg:justify-end"> | ||
{{ include('partials/keys_buttons.twig', { | ||
import_btn: true, | ||
add_new_btn: true, | ||
}) }} | ||
</div> | ||
</div> | ||
|
||
{{ include('partials/import_form.twig', { | ||
expire_default: '0', | ||
expire_max: 2592000, | ||
key_desc: 'The text value in the .txt file.', | ||
}) }} | ||
|
||
{{ include('partials/keys_table.twig', { | ||
head_items: [ | ||
{'title': 'Key'}, | ||
{'title': 'Last used', 'class': 'w-32'}, | ||
{'title': 'TTL', 'class': 'w-32'}, | ||
], | ||
}) }} |
Oops, something went wrong.