db3625ec91
- Use new "Font Awesome" icons. - Sorting columns. - Filter table. - New focusMe directive. - Delete user - Use ui-sref. - Use angular-gettext for i18n. - Added sample po files for DE and FR. - group views - use google coding style (2 spaces, optional end tags, etc)
45 lines
1.5 KiB
HTML
45 lines
1.5 KiB
HTML
<h1 translate>Import participants</h1>
|
|
|
|
<div id="submenu">
|
|
<a ui-sref="users.user.list" class="btn btn-sm btn-default">
|
|
<i class="fa fa-angle-double-left fa-lg"></i>
|
|
<translate>Back to overview</translate>
|
|
</a>
|
|
</div>
|
|
|
|
<p translate>Select a CSV file to import users!
|
|
|
|
<p translate>Please note:</p>
|
|
<ul>
|
|
<li><translate>Required comma separated values</translate>:<br>
|
|
<code translate>'title, first name, last name, gender, email, group id, structure level,
|
|
committee, about me, comment, is active'</code>
|
|
<li><translate>Default groups</translate>:
|
|
<translate>Delegate</translate> <code>3</code>,
|
|
<translate>Staff</translate> <code>4</code>
|
|
<li translate>At least first name or last name have to be filled in. All
|
|
other fields are optional and may be empty.
|
|
<li translate>The first line (header) is ignored.
|
|
<li translate>Required CSV file encoding is UTF-8.
|
|
<li><a href="https://github.com/OpenSlides/OpenSlides/wiki/CSV-Import" translate>
|
|
Use the CSV example file from OpenSlides Wiki.
|
|
</a>
|
|
</ul>
|
|
|
|
<!-- TODO: add post url to form-->
|
|
<form>
|
|
<div class="form-group">
|
|
<label for="InputFile" translate>CSV file:</label>
|
|
<input type="file" id="InputFile">
|
|
<p class="help-block" translate>The file has to be encoded in UTF-8.
|
|
</div>
|
|
|
|
<!--TODO-->
|
|
<button type="submit" ng-click="" class="btn btn-primary" translate>
|
|
Import
|
|
</button>
|
|
<button ui-sref="users.user.list" class="btn btn-default" translate>
|
|
Cancel
|
|
</button>
|
|
</form>
|