Mercurial > public > madeira
comparison static/js/tinymce/jscripts/tiny_mce/plugins/advhr/rule.htm @ 45:966cde8635c0
For issue #3, created a separate news app.
Created import management command.
Using TinyMCE editor in the admin.
News model now stores HTML.
The news page is now paginated.
Each story has a perma-link now.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 15 Mar 2012 20:02:39 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
44:42a6bde9913c | 45:966cde8635c0 |
---|---|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
2 <html xmlns="http://www.w3.org/1999/xhtml"> | |
3 <head> | |
4 <title>{#advhr.advhr_desc}</title> | |
5 <script type="text/javascript" src="../../tiny_mce_popup.js"></script> | |
6 <script type="text/javascript" src="js/rule.js"></script> | |
7 <script type="text/javascript" src="../../utils/mctabs.js"></script> | |
8 <script type="text/javascript" src="../../utils/form_utils.js"></script> | |
9 <link href="css/advhr.css" rel="stylesheet" type="text/css" /> | |
10 </head> | |
11 <body role="application"> | |
12 <form onsubmit="AdvHRDialog.update();return false;" action="#"> | |
13 <div class="tabs"> | |
14 <ul> | |
15 <li id="general_tab" class="current" aria-controls="general_panel"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#advhr.advhr_desc}</a></span></li> | |
16 </ul> | |
17 </div> | |
18 | |
19 <div class="panel_wrapper"> | |
20 <div id="general_panel" class="panel current"> | |
21 <table role="presentation" border="0" cellpadding="4" cellspacing="0"> | |
22 <tr role="group" aria-labelledby="width_label"> | |
23 <td><label id="width_label" for="width">{#advhr_dlg.width}</label></td> | |
24 <td class="nowrap"> | |
25 <input id="width" name="width" type="text" value="" class="mceFocus" /> | |
26 <span style="display:none;" id="width_unit_label">{#advhr_dlg.widthunits}</span> | |
27 <select name="width2" id="width2" aria-labelledby="width_unit_label"> | |
28 <option value="">px</option> | |
29 <option value="%">%</option> | |
30 </select> | |
31 </td> | |
32 </tr> | |
33 <tr> | |
34 <td><label for="size">{#advhr_dlg.size}</label></td> | |
35 <td><select id="size" name="size"> | |
36 <option value="">{#advhr_dlg.normal}</option> | |
37 <option value="1">1</option> | |
38 <option value="2">2</option> | |
39 <option value="3">3</option> | |
40 <option value="4">4</option> | |
41 <option value="5">5</option> | |
42 </select></td> | |
43 </tr> | |
44 <tr> | |
45 <td><label for="noshade">{#advhr_dlg.noshade}</label></td> | |
46 <td><input type="checkbox" name="noshade" id="noshade" class="radio" /></td> | |
47 </tr> | |
48 </table> | |
49 </div> | |
50 </div> | |
51 | |
52 <div class="mceActionPanel"> | |
53 <input type="submit" id="insert" name="insert" value="{#insert}" /> | |
54 <input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" /> | |
55 </div> | |
56 </form> | |
57 </body> | |
58 </html> |