luci2: convert system.cron view markup to bootstrap
[project/luci2/ui.git] / luci2 / htdocs / luci2 / template / system.startup.htm
1 <ul class="nav nav-tabs">
2         <li class="active"><a href="#rclocal" data-toggle="tab"><%:Local Startup%></a></li>
3         <li><a href="#initscripts" data-toggle="tab"><%:Initscripts%></a></li>
4 </ul>
5
6 <div class="tab-content">
7         <div class="tab-pane active" id="rclocal">
8                 <p><%:This is the content of /etc/rc.local. Insert your own commands here (in front of 'exit 0') to execute them at the end of the boot process.%></p>
9                 <div class="panel panel-default">
10                         <textarea id="rc_local" class="form-control" style="width:100%" rows="10"></textarea>
11                 </div>
12                 <div class="text-right">
13                         <button type="button" class="btn btn-primary"><%:Save%></button>
14                 </div>
15         </div>
16
17         <div class="tab-pane" id="initscripts">
18                 <p><%:You can enable or disable installed init scripts here. Changes will applied after a device reboot. Warning: If you disable essential init scripts like "network", your device might become inaccessible!%></p>
19                 <div id="init_table"></div>
20         </div>
21 </div>