Skip to content

Commit

Permalink
Merge pull request #490 from nautobot/develop
Browse files Browse the repository at this point in the history
Merge 1.4.1 into main
  • Loading branch information
itdependsnetworks authored May 5, 2023
2 parents 1730b85 + 0bd6835 commit 4128085
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
6 changes: 6 additions & 0 deletions docs/admin/release_notes/version_1.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

- Change min version of Nautobot from 1.4.0 to 1.5.3 which is required for the use of NautobotUIViewset, Notes mixins etc.

## v1.4.1 - 2023-05

### Fixed

- [488](https://github.com/nautobot/nautobot-plugin-golden-config/pull/488) - Fix Golden Config Settings Buttons.

## v1.4.0 - 2023-05

### Added
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
{% extends 'generic/object_detail.html' %}
{% load helpers %}
{% load buttons %}

{% block buttons %}
{% if perms.nautobot_golden_config.add_goldenconfigsetting %}
{% clone_button object %}
{% endif %}
{% if perms.nautobot_golden_config.change_goldenconfigsetting %}
{% edit_button object key="pk" %}
{% endif %}
{% if perms.nautobot_golden_config.delete_goldenconfigsetting %}
{% delete_button object key="pk" %}
{% endif %}
{% endblock buttons %}

{% block content_left_page %}
<div class="panel panel-default">
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nautobot-golden-config"
version = "1.4.0"
version = "1.4.1"
description = "A plugin for configuration on nautobot"
authors = ["Network to Code, LLC", "<opensource@networktocode.com>"]

Expand Down

0 comments on commit 4128085

Please sign in to comment.