Skip to content

Commit

Permalink
ui/ux: Update verbose name of DonationProject.redirect_target to 'red…
Browse files Browse the repository at this point in the history
…irect address' and update corresponding documentation.
  • Loading branch information
Nico-AP committed Nov 29, 2024
1 parent 46a63b5 commit 402205d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ddm/projects/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,11 @@ class DonationProject(models.Model):
redirect_target = models.CharField(
max_length=2000,
blank=True,
verbose_name='Redirect target',
verbose_name='Redirect address',
help_text=mark_safe(
'Always include <i>http://</i> or <i>https://</i> in the redirect target. '
'Always include <i>http://</i> or <i>https://</i> in the redirect address. '
'If URL parameter extraction is enabled for this project, you can '
'include the extracted URL parameters in the redirect target as follows: '
'include the extracted URL parameters in the redirect address as follows: '
'"https://redirect.me/?redirectpara=<b>{{participant.data.url_param.URLParameter}}</b>".')
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ This can be configured using the following settings:
Redirect enabled:: Enable or disable the redirection of your participants when they have completed your project.
If enabled, a redirect button will be displayed on the data donation end page that redirects to the URL defined in the `Redirect target` setting.

Redirect target:: URL to which participants will redirected (only required if `redirect` is enabled).
Redirect address:: The URL to which participants will be redirected (only required if `redirect` is enabled).

[TIP]
====
Expand Down

0 comments on commit 402205d

Please sign in to comment.