Advertisement
Guest User

Untitled

a guest
Oct 4th, 2011
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.11 KB | None | 0 0
  1.   <div class="formular">
  2.  
  3.     <!-- Übersicht -->
  4.     <div class="form-row">
  5.       <label for="titel">Titel <span class="required">*</span></label>
  6.       <f:form.textfield property="titel" size="40" />
  7.     </div>
  8.  
  9.     <div class="form-row">
  10.       <label for="alias">Seiten-Alias</label>
  11.       <f:form.textfield property="alias" size="30" />
  12.     </div>
  13.  
  14.     <div class="form-row">
  15.       <label for="ausbildungsschwerpunkt">Ausbildungsschwerpunkt</label>
  16.       <f:form.select id="ausbildungsschwerpunkt" property="ausbildungsschwerpunkt"
  17.        options="{ausbildungsschwerpunkte}" optionLabelField="titel" optionValueField="uid">
  18.         <select>
  19.           <option>###dummy###</option>
  20.         </select>
  21.       </f:form.select><br />
  22.     </div>
  23.  
  24.     <div class="form-row">
  25.       <label for="allgemein">Übersicht Text <span class="required">*</span></label>
  26.       <f:form.rte property="allgemein" rows="5" cols="80" />
  27.     </div>
  28.  
  29.     <!-- Ausbildung -->
  30.     <div class="form-row">
  31.       <label for="ausbildung">Ausbildung Text <span class="required">*</span></label>
  32.       <f:form.rte property="ausbildung" rows="5" cols="40" />
  33.     </div>
  34.  
  35.     <!-- Lehrinhalte -->
  36.     <div class="form-row">
  37.       <label for="lehrinhalte">Lehrinhalte Text <span class="required">*</span></label>
  38.       <f:form.rte property="lehrinhalte" rows="5" cols="40" />
  39.     </div>
  40.  
  41.     <!-- Finanzierung -->
  42.     <div class="form-row">
  43.       <label for="finanzierung">Finanzierung <span class="required">*</span></label>
  44.       <f:form.rte property="finanzierung" rows="5" cols="40" />
  45.     </div>
  46.  
  47.     <!-- Meta-Daten -->
  48.     <div class="form-row">
  49.       <label for="htmlTitle">HTML-Titel</label>
  50.       <f:form.textfield property="htmlTitle" size="40" />
  51.     </div>
  52.  
  53.     <div class="form-row">
  54.       <label for="htmlDescription">HTML-Beschreibung</label>
  55.       <f:form.textarea property="htmlDescription" cols="40" rows="15" />
  56.     </div>
  57.  
  58.     <div class="form-row">
  59.       <label for="htmlKeywords">HTML-Keywords</label>
  60.       <f:form.textarea property="htmlKeywords" cols="40" rows="15" />
  61.     </div>
  62.  
  63.     <div class="form-row">
  64.       <label for="htmlRobots">HTML-Robots</label>
  65.       <f:form.select id="htmlRobots" property="htmlRobots" value="{lehrgang.htmlRobots}" options="{
  66.        indexfollow: 'index, follow',
  67.        index: 'index',
  68.        follow: 'follow',
  69.        noindexnofollow: 'noindex, nofollow',
  70.        indexnofollow: 'index, nofollow'
  71.      }">
  72.         <select>
  73.           <option>###dummy###</option>
  74.         </select>
  75.       </f:form.select><br />
  76.     </div>
  77.  
  78.     <div class="form-row">
  79.       <label for="htmlSitemapChanges">Sitemap Änderungs-Häufigkeit</label>
  80.       <f:form.select id="htmlSitemapChanges" property="htmlSitemapChanges" value="{lehrgang.htmlSitemapChanges}" options="{
  81.        monthly: 'monthly',
  82.        always: 'always',
  83.        hourly: 'hourly',
  84.        daily: 'daily',
  85.        weekly: 'weekly',
  86.        yearly: 'yearly',
  87.        never: 'never'
  88.      }">
  89.         <select>
  90.           <option>###dummy###</option>
  91.         </select>
  92.       </f:form.select><br />
  93.     </div>
  94.  
  95.   </div>
  96.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement