mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
810 B
25 lines
810 B
from django.utils.translation import gettext as _ |
|
|
|
from notifications.notifications import UserMessage |
|
|
|
|
|
class BulkUpdatePlatformSkipAssetUserMsg(UserMessage): |
|
def __init__(self, user, assets): |
|
super().__init__(user) |
|
self.assets = assets |
|
|
|
def get_html_msg(self) -> dict: |
|
subject = _("Batch update platform in assets, skipping assets that do not meet platform type") |
|
message = f'<ol>{"".join([f"<li>{asset}</li>" for asset in self.assets])}</ol>' |
|
return { |
|
'subject': subject, |
|
'message': message |
|
} |
|
|
|
@classmethod |
|
def gen_test_msg(cls): |
|
from users.models import User |
|
from assets.models import Asset |
|
user = User.objects.first() |
|
assets = Asset.objects.all()[:10] |
|
return cls(user, assets)
|
|
|