Show
Ignore:
Timestamp:
04/30/08 13:35:20 (23 months ago)
Author:
JensDiemer
Message:

Experimental new Preferences!

  • New editor used the newforms models in the plugin class
  • Doesn't realy use the preferences (in search and find_and_replace) only display it
  • the system_settings doesn't used, too. Only for display the data.
  • Not ready in all cases
  • there can exist some print debug!
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pylucid/media/PyLucid/internal_page/preferences/select.html

    r1540 r1544  
    1 {% for plugin, data in preferences.items %} 
    2 <fieldset><legend>{{ plugin }}</legend> 
     1<fieldset><legend>select for edit</legend> 
    32<ul> 
    4   {% for pref in data %} 
    5   <li><a href="{{ pref.link }}">{{ pref.name }}</a><br /> 
    6   {{ pref.description }}</li> 
    7   {% endfor %} 
     3{% for item in preferences %} 
     4  <li><a href="{{ item.edit_link }}">{{ item.plugin_name }}</a> - {{ item.plugin_description }}</li> 
     5{% endfor %} 
    86</ul> 
     7<small> 
     8({% trans 'Low level edit in the' %} <a href="{{ admin_link }}" onclick="OpenInWindow(this); return false">{% trans 'django admin panel' %}</a>.) 
     9</small> 
    910</fieldset> 
    10 {% endfor %}