Fixes in documentation

This commit is contained in:
absurdo 2023-11-04 21:15:44 +01:00
parent cfb70403c1
commit dc58175760
13 changed files with 119 additions and 113 deletions

View file

@ -203,7 +203,7 @@ class SimpleList:
"""Method for join options list returns with jln attributte separator
Returns:
str: Return a string with joined options
options (str): Return a string with joined options
"""
#SimpleList.standard_options(arr_row)
return self.jln.join(options_func(self.url, arr_row[self.model.name_field_id], arr_row))
@ -213,7 +213,7 @@ class SimpleList:
"""Static method for get standar options for make things with the items row.
Returns:
list: Return a list of basic options for items row
options (list): Return a list of basic options for items row
"""
options=[]
options.append('<a href="'+add_get_parameters(url, op_admin=1, id=id)+'">'+I18n.lang('common', 'edit', 'Edit')+'</a>')