~michael-howden/sahana-eden/taiwan

« back to all changes in this revision

Viewing changes to models/06_hms.py

  • Committer: Michael Howden
  • Date: 2011-04-24 12:44:13 UTC
  • mfrom: (1612.1.163 eden)
  • Revision ID: michael@sahanafoundation.org-20110424124413-mrhnt6iewq5toxlg
MergeĀ lp:~michael-howden/sahana-eden/eden

Show diffs side-by-side

added added

removed removed

Lines of Context:
278
278
                            (T("Images"), "image"),
279
279
                            (T("Staff"), "staff")]
280
280
 
281
 
                    if deployment_settings.has_module("req"):
282
 
                        tabs.append((T("Requests"), "req"))
283
 
                        tabs.append((T("Match Requests"), "req_match/")) 
284
 
                        tabs.append((T("Commit"), "commit"))
285
 
                    if deployment_settings.has_module("inv"):
286
 
                        tabs = tabs + shn_show_inv_tabs(r)
 
281
                    tabs = tabs + shn_show_req_tabs(r) + shn_show_inv_tabs(r)
287
282
 
288
283
                rheader_tabs = s3_rheader_tabs(r, tabs)
289
284