diff --git a/lib/lynx_web/templates/page/projects.html.heex b/lib/lynx_web/templates/page/projects.html.heex
index 6c64ce4..7ed7efe 100644
--- a/lib/lynx_web/templates/page/projects.html.heex
+++ b/lib/lynx_web/templates/page/projects.html.heex
@@ -290,6 +290,7 @@
${project.team.name} |
${formatDatetime(project.createdAt)} |
+
@@ -331,6 +332,29 @@
+
+
diff --git a/lib/lynx_web/templates/page/snapshots.html.heex b/lib/lynx_web/templates/page/snapshots.html.heex
index 4dc319b..55e9f84 100644
--- a/lib/lynx_web/templates/page/snapshots.html.heex
+++ b/lib/lynx_web/templates/page/snapshots.html.heex
@@ -313,6 +313,7 @@
${snapshot.team.name} |
${formatDatetime(snapshot.createdAt)} |
+
|
@@ -353,6 +354,29 @@
+
+
diff --git a/lib/lynx_web/templates/page/teams.html.heex b/lib/lynx_web/templates/page/teams.html.heex
index 3be9cdc..2032844 100644
--- a/lib/lynx_web/templates/page/teams.html.heex
+++ b/lib/lynx_web/templates/page/teams.html.heex
@@ -290,6 +290,7 @@
${team.projectsCount} |
${formatDatetime(team.createdAt)} |
+
|
@@ -330,6 +331,29 @@
+
+
diff --git a/priv/static/theme/app/backend.js b/priv/static/theme/app/backend.js
index f53f0c8..c7b01fd 100644
--- a/priv/static/theme/app/backend.js
+++ b/priv/static/theme/app/backend.js
@@ -431,6 +431,10 @@ lynx_app.teams_list = (Vue, axios, $) => {
}
},
methods: {
+ showTeamInfoAction(description) {
+ $("div#team_info_modal_content").text(description);
+ },
+
editTeamAction(id) {
let current = $('form#update_team_form input[name="uuid"]').val()
if (current != "") {
@@ -762,6 +766,10 @@ lynx_app.projects_list = (Vue, axios, $) => {
}
},
methods: {
+ showProjectInfoAction(description) {
+ $("div#project_info_modal_content").text(description);
+ },
+
editProjectAction(id) {
let current = $('form#update_project_form input[name="uuid"]').val()
if (current != "") {
@@ -1243,6 +1251,10 @@ lynx_app.snapshots_list = (Vue, axios, $) => {
}
},
methods: {
+ showSnapshotInfoAction(description) {
+ $("div#snapshot_info_modal_content").text(description);
+ },
+
formatDatetime(datatime) {
return format_datetime(datatime);
},
|