Changeset 166
- Timestamp:
- Oct 9, 2007, 11:15:11 PM (17 years ago)
- Location:
- trunk/web/templates
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/web/templates/info.tmpl
r161 r166 57 57 <p>Change settings: 58 58 #if $on 59 (To edit ram and disk size, turn off the machine first.)59 (To edit ram, disk size, or machine name, turn off the machine first.) 60 60 #end if 61 61 </p> … … 63 63 <input type="hidden" name="machine_id" value="$machine.machine_id"/> 64 64 <table> 65 <tr><td>Owner:</td><td><input type="text" name="owner", value="$machine.owner"/></td> 66 <td>NOTE: The Owner must the name of a locker that you administer</td></tr> 65 <tr><td>Owner$owner_help:</td><td><input type="text" name="owner", value="$machine.owner"/></td></tr> 67 66 <tr><td>Contact email:</td><td><input type="text" name="contact" value="$machine.contact"/></td></tr> 68 <tr><td>Machine Name:</td><td><input type="text" name="name" value="$machine.name"/></td></tr>69 67 #if $machine.nics 70 <tr><td>Hostname:</td><td><input type="text" name="hostname" value="$machine.nics[0].hostname"/>.servers.csail.mit.edu</td> 71 <td>NOTE: The hostname must being with "Owner_".</td></tr> 68 <tr><td>Hostname:</td><td><input type="text" name="hostname" value="$machine.nics[0].hostname"/>.servers.csail.mit.edu</td></tr> 72 69 #end if 73 70 #if not $on 71 <tr><td>Machine Name:</td><td><input type="text" name="name" value="$machine.name"/></td></tr> 74 72 <tr><td>Ram:</td><td><input type="text" size=3 name="memory" value="$machine.memory"/>MB (max $max_mem)</td></tr> 75 73 <tr><td>Disk:</td><td><input type="text" size=3 name="disk" value="${machine.disks[0].size/1024.}"/>GB (max $max_disk)</td><td>WARNING: Modifying disk size may corrupt your data.</td></tr> -
trunk/web/templates/main.py
r165 r166 677 677 ParaVM machines use Xen's emulation of virtualization features. You 678 678 want an HVM virtualized machine.""", 679 cpu_weight="""Don't ask us! We're as mystified as you are.""") 679 cpu_weight="""Don't ask us! We're as mystified as you are.""", 680 owner="""The Owner must be the name of a locker that you are an AFS 681 administrator of. In particular, you or an AFS group you are a member 682 of must have AFS rlidwka bits on the locker. You can check see who 683 administers the LOCKER locker using the command 'fs la /mit/LOCKER' on 684 Athena.)""") 680 685 681 686 d = dict(user=user, … … 758 763 max_mem=max_mem, 759 764 max_disk=max_disk, 765 owner_help=helppopup("owner"), 760 766 fields = fields) 761 767 return Template(file='info.tmpl',
Note: See TracChangeset
for help on using the changeset viewer.