Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
pyramid / docs / quick_tour / view_classes / hello.jinja2
Size: Mime:
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Hello World</title>
</head>
<body>
<h1>Hello {{ view.name }}!</h1>
<form method="POST"
      action="{{ request.current_route_url() }}">
    <input name="new_name">
    <input type="submit" name="form.edit" value="Save">
    <input type="submit" name="form.delete" value="Delete">
</form>
</body>
</html>