@@ -149,6 +149,13 @@ def activity_contribute_create(request): |
||
149 | 149 |
|
150 | 150 |
act = MemberActivityInfo.objects.get(activity_id=activity_id) |
151 | 151 |
|
152 |
+ if act.activity_section == 4: |
|
153 |
+ try: |
|
154 |
+ lensman = LensmanInfo.objects.get(user_id=user_id, status=True) |
|
155 |
+ user_name = lensman.name |
|
156 |
+ except: |
|
157 |
+ pass |
|
158 |
+ |
|
152 | 159 |
try: |
153 | 160 |
signup_info = MemberActivitySignupInfo.objects.get(user_id=user_id, activity_id=activity_id, status=True) |
154 | 161 |
if user_name and user_avatar: |