Root/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | {extends "idf/gadmin/base.html"} {block request} class="active"{/block} {block body} {if $createdtext} {$createdtext} < br /> < br /> {/if} {if $errors} {foreach $errors as $error} {$error} {/foreach} {/if} < table > < tr > < th > Short Name </ th > < th > Description </ th > < th > Repotype </ th > < th > Submitter </ th > < th > Date </ th > < th > Approve </ th > </ tr > {foreach $requests as $req} < tr > < td > {$req.shortname} </ td > < td > {$req.desc} </ td > < td > {$req.repotype} </ td > < td > {$req.get_submitter.login} </ td > < td > {$req.creation_dtime} </ td > < td > < a href = "{url 'IDF_Views_Admin::projectRequestCreate'}{$req.id}/" >Approve</ a > </ td > </ tr > {/foreach} </ table > {/block} |
Source at commit 5c708d546d02 created 11 years 9 months ago. By "Nathan Adams ", Adding migration for OTP field |
---|