[PR #141] [MERGED] Change root password using panel #433

Closed
opened 2026-02-27 15:58:42 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/retspen/webvirtcloud/pull/141
Author: @ghost
Created: 5/3/2018
Status: Merged
Merged: 5/7/2018
Merged by: @retspen

Base: masterHead: master


📝 Commits (10+)

  • 609651d disable page reloading while migrating vm and pleaseWaitDialog is displayed
  • fe89af9 using custom accounts.backends.MyRemoteUserBackend, which adds default instances and attributes for user
  • 14b0751 UserAttributes can_clone_instances defaults to True
  • 6858448 fix multiple media selection in instance settings form
  • b7457a4 automatic remove instances with the same name
  • 4d08f95 add /instance/sshkeys/ endpoint for retrieving instance owners ssh keys
  • f959dc7 settings: TEMPLATE_DIRS is deprecated, using TEMPLATES instead
  • d715e99 templates/instance.html view redesign. smaller instance details, instance title added
  • c5f8635 fix STATIC_URL in templates. static urls should be generated by "static" template tag
  • 3e709cd accounts/views: do not redirect to profile, if user wants to see self

📊 Changes

25 files changed (+713 additions, -177 deletions)

View changed files

📝 .gitignore (+3 -2)
📝 README.md (+13 -0)
📝 accounts/backends.py (+7 -1)
accounts/migrations/0009_auto_20171026_0805.py (+19 -0)
📝 accounts/models.py (+24 -1)
📝 accounts/templates/account.html (+26 -1)
📝 accounts/templates/profile.html (+6 -4)
📝 accounts/templatetags/tags_fingerprint.py (+6 -3)
📝 accounts/views.py (+3 -13)
📝 console/templates/console-base.html (+6 -5)
instances/migrations/0003_instance_created.py (+21 -0)
📝 instances/models.py (+1 -0)
instances/templates/add_instance_owner_block.html (+36 -0)
📝 instances/templates/instance.html (+210 -54)
📝 instances/templates/instances.html (+2 -2)
📝 instances/urls.py (+2 -0)
📝 instances/views.py (+190 -39)
📝 logs/urls.py (+1 -0)
📝 logs/views.py (+29 -4)
📝 templates/pleasewaitdialog.html (+2 -0)

...and 5 more files

📄 Description

Hi there!
This is a awesome project!
I am running the latest old version and today I had an opportunity to install your version. Very good some changes that you did!
I have 2 questions:
1-) Is this possible to back the option to change root password using the panel?
2-) Do you will continue this project?

Thanks.

Thiago


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/retspen/webvirtcloud/pull/141 **Author:** [@ghost](https://github.com/ghost) **Created:** 5/3/2018 **Status:** ✅ Merged **Merged:** 5/7/2018 **Merged by:** [@retspen](https://github.com/retspen) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`609651d`](https://github.com/retspen/webvirtcloud/commit/609651d707255b826fac7fa24e9abe82d7bf72b3) disable page reloading while migrating vm and pleaseWaitDialog is displayed - [`fe89af9`](https://github.com/retspen/webvirtcloud/commit/fe89af9d8fdae0e5d2d76a643fb22ea83d78e318) using custom accounts.backends.MyRemoteUserBackend, which adds default instances and attributes for user - [`14b0751`](https://github.com/retspen/webvirtcloud/commit/14b0751930c75daaf964f4222ac3a74c2cb736ec) UserAttributes can_clone_instances defaults to True - [`6858448`](https://github.com/retspen/webvirtcloud/commit/6858448b60dd5ee7b08fe035b85198295a593b34) fix multiple media selection in instance settings form - [`b7457a4`](https://github.com/retspen/webvirtcloud/commit/b7457a4362797fbdefb09059931463fdd0ed29f2) automatic remove instances with the same name - [`4d08f95`](https://github.com/retspen/webvirtcloud/commit/4d08f956fb8af591feed1b69df6c40e7d1655a5c) add /instance/sshkeys/ endpoint for retrieving instance owners ssh keys - [`f959dc7`](https://github.com/retspen/webvirtcloud/commit/f959dc7016778af4266e2031030ada0b046ad5fe) settings: TEMPLATE_DIRS is deprecated, using TEMPLATES instead - [`d715e99`](https://github.com/retspen/webvirtcloud/commit/d715e996b01e695d0e6ac3697a1d18a5f36a6702) templates/instance.html view redesign. smaller instance details, instance title added - [`c5f8635`](https://github.com/retspen/webvirtcloud/commit/c5f86358becf6e74ee0f5c8591482fc7cd4f8117) fix STATIC_URL in templates. static urls should be generated by "static" template tag - [`3e709cd`](https://github.com/retspen/webvirtcloud/commit/3e709cd253c180ae81bbd9374105e4f870e9734b) accounts/views: do not redirect to profile, if user wants to see self ### 📊 Changes **25 files changed** (+713 additions, -177 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+3 -2) 📝 `README.md` (+13 -0) 📝 `accounts/backends.py` (+7 -1) ➕ `accounts/migrations/0009_auto_20171026_0805.py` (+19 -0) 📝 `accounts/models.py` (+24 -1) 📝 `accounts/templates/account.html` (+26 -1) 📝 `accounts/templates/profile.html` (+6 -4) 📝 `accounts/templatetags/tags_fingerprint.py` (+6 -3) 📝 `accounts/views.py` (+3 -13) 📝 `console/templates/console-base.html` (+6 -5) ➕ `instances/migrations/0003_instance_created.py` (+21 -0) 📝 `instances/models.py` (+1 -0) ➕ `instances/templates/add_instance_owner_block.html` (+36 -0) 📝 `instances/templates/instance.html` (+210 -54) 📝 `instances/templates/instances.html` (+2 -2) 📝 `instances/urls.py` (+2 -0) 📝 `instances/views.py` (+190 -39) 📝 `logs/urls.py` (+1 -0) 📝 `logs/views.py` (+29 -4) 📝 `templates/pleasewaitdialog.html` (+2 -0) _...and 5 more files_ </details> ### 📄 Description Hi there! This is a awesome project! I am running the latest old version and today I had an opportunity to install your version. Very good some changes that you did! I have 2 questions: 1-) Is this possible to back the option to change root password using the panel? 2-) Do you will continue this project? Thanks. Thiago --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 15:58:42 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/webvirtcloud#433
No description provided.