Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Tenzing
/
Tz Tools
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
7f332a10
authored
2011-04-12 15:14:29 +0000
by
Chris Boden
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Updated the course registration paid dropdown to match the events
1 parent
4f4cd750
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
17 deletions
com/UserManager/UserManager.php
com/UserManager/views/partials/edit_course.php
com/UserManager/UserManager.php
View file @
7f332a1
...
...
@@ -889,7 +889,7 @@ class Actions {
));
if
(
isset
(
$_POST
[
'studentfee'
])
&&
$_POST
[
'studentfee'
]
==
1
)
{
$fee
=
number_format
(
CBVOptions\GetOption
(
'
overseas-surcharge
'
,
'fees'
),
2
,
'.'
,
''
);
$fee
=
number_format
(
CBVOptions\GetOption
(
'
student-fees
'
,
'fees'
),
2
,
'.'
,
''
);
$taxes
=
$calc_tax
(
$fee
,
$tax_rate
);
$items_subtotal
+=
$fee
;
...
...
com/UserManager/views/partials/edit_course.php
View file @
7f332a1
...
...
@@ -43,25 +43,18 @@
<div
class=
"title-link"
style=
"display:block;color:#f7bd55; font-size: 12px;font-weight: bold;text-align: left;line-height: 1.75em; background-color: #3b0d32; border: solid 1px #FFF; border-bottom: solid 1px #999; cursor: default; padding: 0em; padding:3px 10px 3px 10px; margin: 0em;"
>
<?php
echo
$course
->
post_title
;
?>
</div>
<div
class=
"dashboard-section"
style=
"margin-left:20px;margin-top:10px;"
>
<div
class=
"dashboard-section-title"
>
REGISTRATION STATUS
</div>
<div
class=
"dashboard-section-links"
></div>
<div
class=
"dashboard-section-content small"
>
<select
name=
"status"
>
<option
value=
"paid"
>
Paid
</option>
<option
value=
"free"
>
Free
</option>
</select>
</div>
</div>
<div
class=
"dashboard-section"
style=
"margin-left:20px;margin-top:10px;"
>
<div
class=
"dashboard-section-title"
>
PAID BY
</div>
<div
class=
"dashboard-section-title"
>
HOW TO PROCESS THE REGISTRATION:
</div>
<div
class=
"dashboard-section-links"
></div>
<div
class=
"dashboard-section-content small"
>
<select
name=
"paid_by"
>
<option
value=
"visa"
>
Visa
</option>
<option
value=
"mc"
>
Mastercard
</option>
<option
value=
"amex"
>
American Express
</option>
<option
value=
"cheque"
>
Cheque
</option>
<?php
/*
<option value="unpaid">Invoice User</option>
<option value="complementary">Complementary</option>
*/
?>
<option
value=
"visa"
>
Paid by Prepaid Visa
</option>
<option
value=
"mc"
>
Paid by Prepaid Mastercard
</option>
<option
value=
"amex"
>
Paid by Prepaid American Express
</option>
<option
value=
"cheque"
>
Paid by Cheque
</option>
</select>
</div>
</div>
...
...
Please
register
or
sign in
to post a comment