diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-08-17 21:40:40 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-08-17 21:40:40 -0700 |
commit | 1a4a921528f1405c131762954d16f0f6c6b690b6 (patch) | |
tree | 0f9e489abeca495c1877e4c1762fbb5f05cd66a6 /view | |
parent | 30fd17c58dccd688e99407b8c3a7b0cf9f4fbdfe (diff) | |
download | volse-hubzilla-1a4a921528f1405c131762954d16f0f6c6b690b6.tar.gz volse-hubzilla-1a4a921528f1405c131762954d16f0f6c6b690b6.tar.bz2 volse-hubzilla-1a4a921528f1405c131762954d16f0f6c6b690b6.zip |
provide module for importing yearly content dumps
Diffstat (limited to 'view')
-rwxr-xr-x | view/tpl/item_import.tpl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/view/tpl/item_import.tpl b/view/tpl/item_import.tpl new file mode 100755 index 000000000..416defcce --- /dev/null +++ b/view/tpl/item_import.tpl @@ -0,0 +1,15 @@ +<h2>{{$title}}</h2> + +<form action="import" method="post" enctype="multipart/form-data" id="import-channel-form"> + + <div id="import-desc" class="descriptive-paragraph">{{$desc}}</div> + + <label for="import-filename" id="label-import-filename" class="import-label" >{{$label_filename}}</label> + <input type="file" name="filename" id="import-filename" class="import-input" value="" /> + <div id="import-filename-end" class="import-field-end"></div> + + <input type="submit" name="submit" id="import-submit-button" value="{{$submit}}" /> + <div id="import-submit-end" class="import-field-end"></div> + +</form> + |