summaryrefslogtreecommitdiff
path: root/docs/narr/MyProject/myproject/configure.zcml
blob: 1d0b3e61cf346e8cf056a210bd2c3f519a300416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<configure xmlns="http://pylonshq.com/pyramid">

  <include package="pyramid.includes" />

  <view
     context=".models.MyModel"
     view=".views.my_view"
     renderer="templates/mytemplate.pt"
     />

  <static
     name="static"
     path="templates/static"
     />

</configure>