Function: render-view

Documentation

Outputs the html of a named view.

Source

(defun render-view (name &rest rest)
  "Outputs the html of a named view."
  (apply (aif (find-view name) it
	      (error 'wisp-undefined-view :view-name name))
	 rest))
Source Context