Initial commit
This commit is contained in:
44
ui/classify.html
Normal file
44
ui/classify.html
Normal file
@@ -0,0 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title data-i18n="classifyTitle">Klassifizierung bearbeiten</title>
|
||||
<link rel="stylesheet" href="gemeinsam.css">
|
||||
</head>
|
||||
<body>
|
||||
<h1 data-i18n="classifyTitle">Klassifizierung bearbeiten</h1>
|
||||
<div id="quelle" class="hinweis"></div>
|
||||
|
||||
<label for="titel" data-i18n="fieldTitle">Titel</label>
|
||||
<input type="text" id="titel">
|
||||
|
||||
<label for="erstellt" data-i18n="fieldCreated">Erstellt</label>
|
||||
<input type="text" id="erstellt" placeholder="JJJJ-MM-TT">
|
||||
|
||||
<label for="korr" data-i18n="fieldCorrespondent">Korrespondent</label>
|
||||
<input type="text" id="korr" list="korrListe" autocomplete="off">
|
||||
<datalist id="korrListe"></datalist>
|
||||
|
||||
<label for="typ" data-i18n="fieldDocType">Dokumenttyp</label>
|
||||
<input type="text" id="typ" list="typListe" autocomplete="off">
|
||||
<datalist id="typListe"></datalist>
|
||||
|
||||
<div class="wachsen">
|
||||
<label data-i18n="fieldTags">Tags</label>
|
||||
<div class="liste"><div id="tags" style="padding:4px 8px"></div></div>
|
||||
</div>
|
||||
|
||||
<div class="hinweis" data-i18n="classifyHintNew">
|
||||
Unbekannte Korrespondenten und Dokumenttypen werden angelegt.
|
||||
</div>
|
||||
|
||||
<div id="meldung" class="hinweis"></div>
|
||||
|
||||
<div class="fuss">
|
||||
<button id="ueberspringen" data-i18n="btnSkip">Überspringen</button>
|
||||
<button id="speichern" class="haupt" data-i18n="btnSave">Speichern</button>
|
||||
</div>
|
||||
|
||||
<script type="module" src="classify.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user