|
4 | 4 | How to Embed a Collection of Forms |
5 | 5 | ================================== |
6 | 6 |
|
7 | | -In this entry, you'll learn how to create a form that embeds a collection |
| 7 | +In this article, you'll learn how to create a form that embeds a collection |
8 | 8 | of many other forms. This could be useful, for example, if you had a ``Task`` |
9 | 9 | class and you wanted to edit/create/remove many ``Tag`` objects related to |
10 | 10 | that Task, right inside the same form. |
11 | 11 |
|
12 | 12 | .. note:: |
13 | 13 |
|
14 | | - In this entry, it's loosely assumed that you're using Doctrine as your |
| 14 | + In this article, it's loosely assumed that you're using Doctrine as your |
15 | 15 | database store. But if you're not using Doctrine (e.g. Propel or just |
16 | 16 | a database connection), it's all very similar. There are only a few parts |
17 | 17 | of this tutorial that really care about "persistence". |
@@ -224,7 +224,7 @@ great, your user can't actually add any new tags yet. |
224 | 224 |
|
225 | 225 | .. caution:: |
226 | 226 |
|
227 | | - In this entry, you embed only one collection, but you are not limited |
| 227 | + In this article, you embed only one collection, but you are not limited |
228 | 228 | to this. You can also embed nested collection as many levels down as you |
229 | 229 | like. But if you use Xdebug in your development setup, you may receive |
230 | 230 | a ``Maximum function nesting level of '100' reached, aborting!`` error. |
|
0 commit comments