I've received some feedback on the 'Revision' label we use in the import
layer page. It is not quite communicating that what's required is a Git
revision. Changing it to 'Git revision' to make it a bit more specific.
The change applies not only to the import layer page, but to all pages
showing revision information in the project configuration section.
@@ -158,7+158,7 @@ class LayersTable(ToasterTable):
{% endwith %}
'''
- self.add_column(title="Revision",
+ self.add_column(title="Git revision",
help_text="The Git branch, tag or commit. For the layers from the OpenEmbedded layer source, the revision is always the branch compatible with the Yocto Project version you selected for this project",
static_data_name="revision",
static_data_template=revision_template)
@@ -269,7+269,7 @@ class MachinesTable(ToasterTable):
static_data_template=layer_link_template,
orderable=True)
- self.add_column(title="Revision",
+ self.add_column(title="Git revision",
help_text="The Git branch, tag or commit. For the layers from the OpenEmbedded layer source, the revision is always the branch compatible with the Yocto Project version you selected for this project",
hidden=True,
field_name="layer_version__get_vcs_reference")
@@ -428,7+428,7 @@ class RecipesTable(ToasterTable):