[REF] in coverage module file, split column into 2. a column that should be filled by openupgrader, and a column that is automatically filled when importing apriori and making analysis
parent
1297458211
commit
a53fcb17de
|
@ -564,8 +564,8 @@ class UpgradeAnalysis(models.Model):
|
|||
if compare.apriori.renamed_modules[x] == module
|
||||
][0]
|
||||
)
|
||||
if module in no_changes_modules:
|
||||
status += "No changes. "
|
||||
elif module in no_changes_modules:
|
||||
status += "No DB layout changes. "
|
||||
module_descriptions[module_description.ljust(49, " ")] = status.ljust(
|
||||
49, " "
|
||||
)
|
||||
|
|
|
@ -3,10 +3,10 @@ Module coverage ${start_version} -> ${end_version}
|
|||
|
||||
.. include:: coverage_legend.rst
|
||||
|
||||
+-------------------------------------------------+-------------------------------------------------+
|
||||
|Module |Status |
|
||||
+=================================================+=================================================+
|
||||
% for module, status in module_descriptions.items():
|
||||
|${module}|${status}|
|
||||
+-------------------------------------------------+-------------------------------------------------+
|
||||
+-------------------------------------------------+----------------------+-------------------------------------------------+
|
||||
| Module | Status + Extra Information |
|
||||
+=================================================+======================+=================================================+
|
||||
% for module, extra_information in module_descriptions.items():
|
||||
|${module}| |${extra_information}|
|
||||
+-------------------------------------------------+----------------------+-------------------------------------------------+
|
||||
% endfor
|
||||
|
|
Loading…
Reference in New Issue