Compare commits
12 Commits
mt-initial
...
mt-homonym
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6f157eeea1 | ||
|
|
ed8bb37b15 | ||
|
|
9c007f6dd6 | ||
|
|
b010414bfe | ||
|
|
fb9a809c02 | ||
|
|
6f9142b046 | ||
|
|
a22490c0fc | ||
|
|
b764d59602 | ||
| b17510ffe7 | |||
| 5396868601 | |||
| 8cb63eaa1d | |||
| 6e1f3bd16a |
@@ -1,5 +1,3 @@
|
|||||||
.PHONY: all release build transcrypt copy $(RES_LESS_FILE) $(RES_PY_FILE) $(RES_HTML_FILE) $(RES_XML_FILE)
|
|
||||||
|
|
||||||
SRC_FOLDER=$(CURDIR)/../src
|
SRC_FOLDER=$(CURDIR)/../src
|
||||||
RES_FOLDER=$(CURDIR)/../res
|
RES_FOLDER=$(CURDIR)/../res
|
||||||
|
|
||||||
@@ -20,6 +18,7 @@ RES_PY_FILE=$(SRC_FOLDER)/$(PY_FILE)
|
|||||||
RES_HTML_FILE=$(RES_FOLDER)/$(HTML_FILE)
|
RES_HTML_FILE=$(RES_FOLDER)/$(HTML_FILE)
|
||||||
RES_XML_FILE=$(RES_FOLDER)/$(XML_FILE)
|
RES_XML_FILE=$(RES_FOLDER)/$(XML_FILE)
|
||||||
|
|
||||||
|
.PHONY: all release build transcrypt copy $(RES_LESS_FILE) $(RES_PY_FILE) $(RES_HTML_FILE) $(RES_XML_FILE) $(CONV_FILE)
|
||||||
.DEFAULT_GOAL := all
|
.DEFAULT_GOAL := all
|
||||||
|
|
||||||
all: BR_FLAGS := $(BR_FLAGS) --debug
|
all: BR_FLAGS := $(BR_FLAGS) --debug
|
||||||
|
|||||||
@@ -24,4 +24,4 @@ tar czf - ./config.json ./bundle.js ./local.js ./main.css ./main.html | ssh $USE
|
|||||||
|
|
||||||
# Create a simlink on VPS that will enable specific plugin on https://lexonomy.cjvt.si/
|
# Create a simlink on VPS that will enable specific plugin on https://lexonomy.cjvt.si/
|
||||||
# Routes must be absolute or it doesn't work.
|
# Routes must be absolute or it doesn't work.
|
||||||
ssh -t $USERNAME -p $VPS_PASSWORD "sudo ln -s /home/$VPS_USERNAME/plugins/$PLUGIN_NAME /home/ozbolt/plugins/$PLUGIN_NAME"
|
ssh -t $USERNAME -p $VPS_PASSWORD "sudo -s unlink /home/ozbolt/plugins/$PLUGIN_NAME || true && sudo ln -s /home/$VPS_USERNAME/plugins/$PLUGIN_NAME /home/ozbolt/plugins/$PLUGIN_NAME"
|
||||||
|
|||||||
@@ -3,15 +3,19 @@
|
|||||||
# fail if any command fails
|
# fail if any command fails
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
OUT_FILE=conversions.csv
|
||||||
|
|
||||||
if [[ -z "${API_KEY}" ]]; then
|
if [[ -z "${API_KEY}" ]]; then
|
||||||
echo "API_KEY not defined, should be api key to CJVT's gitea"
|
echo "API_KEY not defined, should be api key to CJVT's gitea"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
OUT_FILE=conversions.csv
|
if [ -f $OUT_FILE ]; then
|
||||||
TEMP_FILE=$(mktemp)
|
echo "file for conversion of SKE collocations: '$OUT_FILE' already exists, skipping."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
rm -r $OUT_FILE
|
TEMP_FILE=$(mktemp)
|
||||||
|
|
||||||
curl -s "https://gitea.cjvt.si/api/v1/repos/generic/data_admin/contents/resources/structure_conversions.csv?token=$API_KEY" -o $TEMP_FILE
|
curl -s "https://gitea.cjvt.si/api/v1/repos/generic/data_admin/contents/resources/structure_conversions.csv?token=$API_KEY" -o $TEMP_FILE
|
||||||
echo "wc: $(wc $TEMP_FILE)"
|
echo "wc: $(wc $TEMP_FILE)"
|
||||||
|
|||||||
@@ -4,7 +4,12 @@
|
|||||||
<head>
|
<head>
|
||||||
<status>LBS</status>
|
<status>LBS</status>
|
||||||
<headword>
|
<headword>
|
||||||
<lemma>aplikativen</lemma>
|
<lemma>aplikativen3</lemma>
|
||||||
|
<homonymy>
|
||||||
|
<homonymyFeature name="pronunciation">bolníšnica</homonymyFeature>
|
||||||
|
<homonymyFeature name="blahblah">xyz</homonymyFeature>
|
||||||
|
<homonymyFeature name="bluhbluh">abc</homonymyFeature>
|
||||||
|
</homonymy>
|
||||||
</headword>
|
</headword>
|
||||||
<grammar>
|
<grammar>
|
||||||
<category>pridevnik</category>
|
<category>pridevnik</category>
|
||||||
|
|||||||
@@ -11,7 +11,6 @@ def export_to_xml(model):
|
|||||||
def export_entry(entry):
|
def export_entry(entry):
|
||||||
parser = __new__(DOMParser())
|
parser = __new__(DOMParser())
|
||||||
doc = parser.parseFromString("<entry />", "text/xml")
|
doc = parser.parseFromString("<entry />", "text/xml")
|
||||||
|
|
||||||
entry_xml = doc.firstChild
|
entry_xml = doc.firstChild
|
||||||
|
|
||||||
# create head
|
# create head
|
||||||
@@ -30,6 +29,17 @@ def export_entry(entry):
|
|||||||
headword.appendChild(headword_lemma)
|
headword.appendChild(headword_lemma)
|
||||||
head.appendChild(headword)
|
head.appendChild(headword)
|
||||||
|
|
||||||
|
homonymy = doc.createElement("homonymy")
|
||||||
|
headword.appendChild(homonymy)
|
||||||
|
|
||||||
|
for hFeature in entry.homonymy:
|
||||||
|
feature = doc.createElement("homonymyFeature")
|
||||||
|
feature.textContent = hFeature.value
|
||||||
|
# Can't use hFeature.name, because Python has name reserver and so it becomes py_name in JS
|
||||||
|
feature.setAttribute("name", hFeature["name"])
|
||||||
|
homonymy.appendChild(feature)
|
||||||
|
|
||||||
|
|
||||||
# if({}) works uncorrectly in transcrypt
|
# if({}) works uncorrectly in transcrypt
|
||||||
if len(entry.lexical_unit) > 0:
|
if len(entry.lexical_unit) > 0:
|
||||||
lexunit = doc.createElement("lexicalUnit")
|
lexunit = doc.createElement("lexicalUnit")
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
from message.simple_messages import NoReset, Reset, ModalNotOkClose, ClickMessage, DataChgClickMessage, KeyboardPress, NoAction
|
from message.simple_messages import NoReset, Reset, ModalNotOkClose, ClickMessage, DataChgClickMessage, KeyboardPress, NoAction
|
||||||
from message.translation_edit import EditTranslation, MoveRight, MoveLeft, BinTranslation
|
from message.translation_edit import EditTranslation, MoveRight, MoveLeft, BinTranslation
|
||||||
from message.show_messages import ShowEntryLabelsEdit, ShowEditTranslation, ShowSenseLabelEdit, ShowSenseDefinitionEdit, ShowCommentEdit, ShowAddTranslation, ShowExampleEdit, ShowVariantsEdit, ShowRelatedEntriesEdit
|
from message.show_messages import ShowEntryLabelsEdit, ShowEditTranslation, ShowSenseLabelEdit, ShowSenseDefinitionEdit, ShowCommentEdit, ShowAddTranslation, ShowExampleEdit, ShowVariantsEdit, ShowHomonymyEdit, ShowRelatedEntriesEdit
|
||||||
from message.simple_edits import EditSenseLabel, EditSenseDefinition, EditComment, AddSenseLabel, AddSense, AddExampleTranslation, DoChosenExamples, AddToLabelList, AddToGenericList, EditVariants, EditRelatedEntries, EditEntryLabels, ExampleClusterEdit, ExampleClusterAdd
|
from message.simple_edits import EditSenseLabel, EditSenseDefinition, EditComment, AddSenseLabel, AddSense, AddExampleTranslation, DoChosenExamples, AddToLabelList, AddToGenericList, EditVariants, EditHomonymy, EditRelatedEntries, EditEntryLabels, ExampleClusterEdit, ExampleClusterAdd
|
||||||
from message.show_menu import ShowTranslationMenu, ShowSenseMenu, ShowExampleMenu
|
from message.show_menu import ShowTranslationMenu, ShowSenseMenu, ShowExampleMenu
|
||||||
from message.sense_edit import SenseMoveUp, SenseMoveDown, SenseBin, AddMultiwordExample
|
from message.sense_edit import SenseMoveUp, SenseMoveDown, SenseBin, AddMultiwordExample
|
||||||
from message.example_edit import ExampleMoveUp, ExampleMoveDown, ExampleBin, ExampleRoleChange, ExampleComponentSpace, ExampleComponentAdd, ExampleComponentRemove, EditExampleText, ToggleExamples, ToggleClusters
|
from message.example_edit import ExampleMoveUp, ExampleMoveDown, ExampleBin, ExampleRoleChange, ExampleComponentSpace, ExampleComponentAdd, ExampleComponentRemove, EditExampleText, ToggleExamples, ToggleClusters
|
||||||
from message.delete_messages import DeleteComment, DeleteVariants, DeleteRelatedEntries, DeleteEntryLabels
|
from message.delete_messages import DeleteComment, DeleteVariants, DeleteHomonymy, DeleteRelatedEntries, DeleteEntryLabels
|
||||||
from message.ske_messages import ShowSkeModal, SearchInSkeModal, SkeInsert
|
from message.ske_messages import ShowSkeModal, SearchInSkeModal, SkeInsert
|
||||||
|
|
||||||
from message.message import msg, delayed_msg
|
from message.message import msg, delayed_msg
|
||||||
|
|||||||
@@ -9,6 +9,21 @@ def generic_list_getter():
|
|||||||
result.append(result_candidate)
|
result.append(result_candidate)
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
# Formats data from inputs to name-value objects
|
||||||
|
def homonymy_list_getter():
|
||||||
|
result = []
|
||||||
|
for row in document.getElementsByClassName("label-list-row"):
|
||||||
|
value = row.querySelector(".value-input").value
|
||||||
|
name = row.querySelector(".name-input").value
|
||||||
|
|
||||||
|
if ("" in [name, value]):
|
||||||
|
continue
|
||||||
|
|
||||||
|
result.append({"name": name, "value": value})
|
||||||
|
|
||||||
|
return result
|
||||||
|
|
||||||
|
|
||||||
def label_list_getter():
|
def label_list_getter():
|
||||||
result = []
|
result = []
|
||||||
for row in document.getElementsByClassName("label-list-row"):
|
for row in document.getElementsByClassName("label-list-row"):
|
||||||
|
|||||||
@@ -18,6 +18,14 @@ class DeleteRelatedEntries(DeleteVariants):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class DeleteHomonymy(NoReset):
|
||||||
|
def update_model(self, model):
|
||||||
|
for el in document.getElementsByClassName("list-adder-input"):
|
||||||
|
el.value = ""
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class DeleteEntryLabels(NoReset):
|
class DeleteEntryLabels(NoReset):
|
||||||
def update_model(self, model):
|
def update_model(self, model):
|
||||||
for sel in document.getElementsByClassName("label-value"):
|
for sel in document.getElementsByClassName("label-value"):
|
||||||
|
|||||||
@@ -30,6 +30,12 @@ class ShowVariantsEdit(ClickMessage):
|
|||||||
model.modal_set(lambda: modals.edit_variants(model.entry))
|
model.modal_set(lambda: modals.edit_variants(model.entry))
|
||||||
|
|
||||||
|
|
||||||
|
class ShowHomonymyEdit(ClickMessage):
|
||||||
|
def update_model(self, model):
|
||||||
|
model.entry.make_copy()
|
||||||
|
model.modal_set(lambda: modals.edit_homonymy(model.entry))
|
||||||
|
|
||||||
|
|
||||||
class ShowRelatedEntriesEdit(ClickMessage):
|
class ShowRelatedEntriesEdit(ClickMessage):
|
||||||
def update_model(self, model):
|
def update_model(self, model):
|
||||||
model.entry.make_copy()
|
model.entry.make_copy()
|
||||||
|
|||||||
@@ -88,6 +88,11 @@ class EditVariants(Message):
|
|||||||
variants = common_accessors.generic_list_getter()
|
variants = common_accessors.generic_list_getter()
|
||||||
model.entry.variants = variants
|
model.entry.variants = variants
|
||||||
|
|
||||||
|
class EditHomonymy(Message):
|
||||||
|
def update_model(self, model):
|
||||||
|
homonymy = common_accessors.homonymy_list_getter()
|
||||||
|
model.entry.homonymy = homonymy
|
||||||
|
|
||||||
|
|
||||||
class EditRelatedEntries(Message):
|
class EditRelatedEntries(Message):
|
||||||
def update_model(self, model):
|
def update_model(self, model):
|
||||||
|
|||||||
@@ -58,7 +58,15 @@ class SkeCollocation:
|
|||||||
def __init__(self, data):
|
def __init__(self, data):
|
||||||
self.word = data.word
|
self.word = data.word
|
||||||
self.frequency = data.count
|
self.frequency = data.count
|
||||||
self.structure_name, self.structure_id = convert_structure(data.gramrel)
|
|
||||||
|
info = convert_structure(data.gramrel)
|
||||||
|
if info is None:
|
||||||
|
self.structure_name = None
|
||||||
|
self.structure_id = None
|
||||||
|
else:
|
||||||
|
self.structure_name = info[0]
|
||||||
|
self.structure_id = info[1]
|
||||||
|
|
||||||
|
|
||||||
self.other = {"score": data.score, "cm": data.cm}
|
self.other = {"score": data.score, "cm": data.cm}
|
||||||
|
|
||||||
@@ -220,7 +228,7 @@ class SkeInsert(DataChgClickMessage):
|
|||||||
def _as_corpus_example(self, example):
|
def _as_corpus_example(self, example):
|
||||||
new_example = Example()
|
new_example = Example()
|
||||||
new_example.inner = CorpusExample()
|
new_example.inner = CorpusExample()
|
||||||
new_example.inner.other_attributes["exampleId"] = example.s_id
|
new_example.inner.other_attributes["example_id"] = example.s_id
|
||||||
new_example.inner.cluster = ExampleClusters.first_empty_cluster()
|
new_example.inner.cluster = ExampleClusters.first_empty_cluster()
|
||||||
|
|
||||||
lex_left = ComponentLexeme()
|
lex_left = ComponentLexeme()
|
||||||
@@ -229,7 +237,7 @@ class SkeInsert(DataChgClickMessage):
|
|||||||
|
|
||||||
lex_mid = ComponentLexeme()
|
lex_mid = ComponentLexeme()
|
||||||
lex_mid.text = example["mid"]
|
lex_mid.text = example["mid"]
|
||||||
lex_mid.role = "headword"
|
lex_mid.role = "collocation"
|
||||||
|
|
||||||
lex_right = ComponentLexeme()
|
lex_right = ComponentLexeme()
|
||||||
lex_right.text = example["right"]
|
lex_right.text = example["right"]
|
||||||
@@ -243,6 +251,7 @@ class SkeInsert(DataChgClickMessage):
|
|||||||
new_collocation.inner = MultiwordExample()
|
new_collocation.inner = MultiwordExample()
|
||||||
|
|
||||||
new_collocation.inner.other_attributes["structure_id"] = example.structure_id
|
new_collocation.inner.other_attributes["structure_id"] = example.structure_id
|
||||||
|
new_collocation.inner.other_attributes["structureName"] = example.structure_name
|
||||||
new_collocation.inner.other_attributes["logDice"] = example.other["score"]
|
new_collocation.inner.other_attributes["logDice"] = example.other["score"]
|
||||||
new_collocation.inner.other_attributes["frequency"] = example.frequency
|
new_collocation.inner.other_attributes["frequency"] = example.frequency
|
||||||
new_collocation.inner.type = "collocation"
|
new_collocation.inner.type = "collocation"
|
||||||
@@ -253,7 +262,7 @@ class SkeInsert(DataChgClickMessage):
|
|||||||
|
|
||||||
lex_mid = ComponentLexeme()
|
lex_mid = ComponentLexeme()
|
||||||
lex_mid.text = example.word
|
lex_mid.text = example.word
|
||||||
lex_mid.role = "headword"
|
lex_mid.role = "collocation"
|
||||||
|
|
||||||
lex_right = ComponentLexeme()
|
lex_right = ComponentLexeme()
|
||||||
lex_right.text = ""
|
lex_right.text = ""
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ class Entry(Data):
|
|||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.status = ""
|
self.status = ""
|
||||||
self.headword = ""
|
self.headword = ""
|
||||||
|
self.homonymy = []
|
||||||
self.headword_type = None
|
self.headword_type = None
|
||||||
self.grammar = ""
|
self.grammar = ""
|
||||||
self.comment = ""
|
self.comment = ""
|
||||||
@@ -25,15 +26,16 @@ class Entry(Data):
|
|||||||
def import_xml(self, entry_xml):
|
def import_xml(self, entry_xml):
|
||||||
status = entry_xml.querySelector("head status")
|
status = entry_xml.querySelector("head status")
|
||||||
headword = entry_xml.querySelector("head headword lemma")
|
headword = entry_xml.querySelector("head headword lemma")
|
||||||
|
|
||||||
grammar = entry_xml.querySelector("head grammar category")
|
grammar = entry_xml.querySelector("head grammar category")
|
||||||
comment = entry_xml.querySelector("head comment")
|
comment = entry_xml.querySelector("head comment")
|
||||||
|
|
||||||
self.status = status.textContent if status else ""
|
self.status = status.textContent if status else ""
|
||||||
self.headword = headword.textContent if headword else ""
|
self.headword = headword.textContent if headword else ""
|
||||||
self.headword_type = headword.getAttribute("type") if headword else None
|
self.headword_type = headword.getAttribute("type") if headword else None
|
||||||
self.grammar = grammar.textContent if grammar else ""
|
self.grammar = grammar.textContent if grammar else ""
|
||||||
self.comment = comment.textContent if comment else ""
|
self.comment = comment.textContent if comment else ""
|
||||||
self.variants = [v.textContent for v in entry_xml.querySelectorAll("head variantList variant")]
|
self.variants = [v.textContent for v in entry_xml.querySelectorAll("head variantList variant")]
|
||||||
|
self.homonymy = [{"value": v.textContent, "name": v.getAttribute("name")} for v in entry_xml.querySelectorAll("head headword homonymy homonymyFeature ")]
|
||||||
self.related_entries = [re.textContent for re in entry_xml.querySelectorAll("head relatedEntryList relatedEntry")]
|
self.related_entries = [re.textContent for re in entry_xml.querySelectorAll("head relatedEntryList relatedEntry")]
|
||||||
|
|
||||||
lex_unit = entry_xml.querySelector("lexical_unit lexeme,lexicalUnit lexeme")
|
lex_unit = entry_xml.querySelector("lexical_unit lexeme,lexicalUnit lexeme")
|
||||||
@@ -80,7 +82,8 @@ class Entry(Data):
|
|||||||
h("button.normal", clk(M.ShowVariantsEdit), "Variante"),
|
h("button.normal", clk(M.ShowVariantsEdit), "Variante"),
|
||||||
h("button.success", clk(M.ShowRelatedEntriesEdit), "Povezano"),
|
h("button.success", clk(M.ShowRelatedEntriesEdit), "Povezano"),
|
||||||
h("button.success", clk(M.ShowEntryLabelsEdit), "Oznake"),
|
h("button.success", clk(M.ShowEntryLabelsEdit), "Oznake"),
|
||||||
h("button.normal", clk(M.ShowCommentEdit), "Opombe")]
|
h("button.normal", clk(M.ShowCommentEdit), "Opombe"),
|
||||||
|
h("button.normal", clk(M.ShowHomonymyEdit), "Homonomije"),]
|
||||||
|
|
||||||
view_buttons = []
|
view_buttons = []
|
||||||
view_table = []
|
view_table = []
|
||||||
@@ -90,6 +93,11 @@ class Entry(Data):
|
|||||||
else:
|
else:
|
||||||
view_table.append((buttons[0], ", ".join(self.variants)))
|
view_table.append((buttons[0], ", ".join(self.variants)))
|
||||||
|
|
||||||
|
if len(self.homonymy) == 0:
|
||||||
|
view_buttons.append(buttons[4])
|
||||||
|
else:
|
||||||
|
view_table.append((buttons[4], ", ".join((h["name"] + ": " + h.value) for h in self.homonymy)))
|
||||||
|
|
||||||
if len(self.related_entries) == 0:
|
if len(self.related_entries) == 0:
|
||||||
view_buttons.append(buttons[1])
|
view_buttons.append(buttons[1])
|
||||||
else:
|
else:
|
||||||
|
|||||||
@@ -47,6 +47,25 @@ def generic_list_editor(title, element_list_getter):
|
|||||||
content.append(h("button", {"on": {"click": message.msg(message.AddToGenericList, element_list_getter)}}, "+"))
|
content.append(h("button", {"on": {"click": message.msg(message.AddToGenericList, element_list_getter)}}, "+"))
|
||||||
return content
|
return content
|
||||||
|
|
||||||
|
def homonymy_editor(title, current_labels):
|
||||||
|
def split_line2(left, right):
|
||||||
|
cls = "flex.two{}".format(".label-list-row")
|
||||||
|
return h("div.{}".format(cls), {}, [
|
||||||
|
h("div.half", {}, left), h("div.half", {}, right)])
|
||||||
|
|
||||||
|
content = [h("p", {}, title)]
|
||||||
|
for i, feature in enumerate(current_labels()):
|
||||||
|
name = []
|
||||||
|
value = []
|
||||||
|
name.append(h("label", {"attrs": {"for": i}}, "Name:"))
|
||||||
|
name.append(h("input.name-input", {"props": {"type": "text", "value": feature["name"], "id": i}}, ""))
|
||||||
|
value.append(h("label", {"attrs": {"for": i + "-value"}}, "Value:"))
|
||||||
|
value.append(h("input.value-input", {"props": {"type": "text", "value": feature["value"], "id": i + "-value"}}, ""))
|
||||||
|
|
||||||
|
content.append(split_line2(name, value))
|
||||||
|
content.append(h("button", {"on": {"click": message.msg(message.AddToGenericList, current_labels)}}, "+"))
|
||||||
|
|
||||||
|
return content
|
||||||
|
|
||||||
def label_list_editor(current_labels, add_label_message_class):
|
def label_list_editor(current_labels, add_label_message_class):
|
||||||
def split_line3(left, center, right, is_llr=True):
|
def split_line3(left, center, right, is_llr=True):
|
||||||
|
|||||||
@@ -99,6 +99,12 @@ def edit_variants(entry):
|
|||||||
return modal_template(content, "Add or remove variants", (message.EditVariants,), (message.DeleteVariants,))
|
return modal_template(content, "Add or remove variants", (message.EditVariants,), (message.DeleteVariants,))
|
||||||
|
|
||||||
|
|
||||||
|
def edit_homonymy(entry):
|
||||||
|
hget = lambda: entry.copy().homonymy
|
||||||
|
content = homonymy_editor("Homonymy", hget)
|
||||||
|
return modal_template(content, "Add or remove homonymy features", (message.EditHomonymy,), (message.DeleteHomonymy,))
|
||||||
|
|
||||||
|
|
||||||
def edit_related_entries(entry):
|
def edit_related_entries(entry):
|
||||||
reget = lambda: entry.copy().related_entries
|
reget = lambda: entry.copy().related_entries
|
||||||
content = generic_list_editor("Related entries", reget)
|
content = generic_list_editor("Related entries", reget)
|
||||||
|
|||||||
Reference in New Issue
Block a user