dict to ul

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
def dict_to_ul(data, result=''):
    try:
        if not isinstance(data, dict):
            return data 
        result += "<ul>"
        for key in data.keys():
            result += "<li>"
            value = data[key]
            if isinstance(value, dict):
                result += "%s: %s" % (key, dict_to_ul(value))
            else:
                result += "%s: %s" % (key, value) 
            result += "</li>"
        result += "</ul>"
        return result
    except Exception:
        return ''

More like this

  1. JSON decorator for views handling ajax requests by anilshanbhag 5 months, 3 weeks ago
  2. baseconv.py - convert base 10 integers to base X and back again by simon 4 years, 2 months ago
  3. convert plain text to html by limodou 6 years, 3 months ago
  4. Converts an integer or floating-point number or a string to a string containing the delimiter character (default comma) after every delimeter_count digits (by default 3 digits) by pikhovkin 1 year, 3 months ago
  5. SASS/SCSS include template tag. by bryanhelmig 1 year, 4 months ago

Comments

(Forgotten your password?)