-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#47: Creating new export configurations now works.
- Loading branch information
1 parent
a5766fb
commit c329e19
Showing
5 changed files
with
57 additions
and
44 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{% extends 'base.html.twig' %} | ||
|
||
{% block importmap %} | ||
{# do NOT call parent() #} | ||
{{ importmap(['app', 'export']) }} | ||
{% endblock %} | ||
|
||
{% block body %} | ||
<h1>Create New Catalog Export Configuration</h1> | ||
<div class='admin-menu'><a href="{{ url('admin_exports_config') }}">« Back to Archive Export Configuration</a></div> | ||
|
||
<form class='config-create-form' action="{{ url('admin_exports_insert_config') }}" method="post"> | ||
<label for='label'>Label:</label><input name='label'></input><br> | ||
<label for='catalog_id'>Catalog:</label> | ||
<select name='catalog_id'> | ||
{% for catalog in catalogs %} | ||
<option value='{{ osidIdToString(catalog.id) }}'>{{ catalog.displayname }}</option> | ||
{% endfor %} | ||
</select> | ||
<input class='submit-button' type='submit'></input> | ||
</form> | ||
{% endblock %} |
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