1
1
import os
2
+ from datetime import date
2
3
3
4
from django .utils .translation import gettext_lazy as _
4
5
@@ -211,18 +212,22 @@ def _readfile(name):
211
212
{
212
213
"name" : "identification" ,
213
214
"description" : _ ("The identification of the case" ),
215
+ "example" : "ZAAK-1234" ,
214
216
},
215
217
{
216
218
"name" : "type_description" ,
217
219
"description" : _ ("The description of the type of the case" ),
220
+ "example" : _ ("Casetype placeholder" ),
218
221
},
219
222
{
220
223
"name" : "status_description" ,
221
224
"description" : _ ("The description of the status of the case" ),
225
+ "example" : _ ("status placeholder" ),
222
226
},
223
227
{
224
228
"name" : "end_date" ,
225
229
"description" : _ ("The planned final date of the case" ),
230
+ "example" : date (2024 , 5 , 1 ),
226
231
},
227
232
{
228
233
"name" : "case_link" ,
@@ -236,6 +241,10 @@ def _readfile(name):
236
241
"name" : "contact_page" ,
237
242
"description" : _ ("The link to an existing contactpage" ),
238
243
},
244
+ {
245
+ "name" : "contact_phonenumber" ,
246
+ "description" : _ ("The callable link to the configured phonenumber" ),
247
+ },
239
248
{
240
249
"name" : "profile_notifications" ,
241
250
"description" : _ (
@@ -269,14 +278,17 @@ def _readfile(name):
269
278
{
270
279
"name" : "identification" ,
271
280
"description" : _ ("The identification of the case" ),
281
+ "example" : "ZAAK-1234" ,
272
282
},
273
283
{
274
284
"name" : "type_description" ,
275
285
"description" : _ ("The description of the type of the case" ),
286
+ "example" : _ ("Casetype placeholder" ),
276
287
},
277
288
{
278
289
"name" : "start_date" ,
279
290
"description" : _ ("The start date of the case" ),
291
+ "example" : date (2024 , 5 , 1 ),
280
292
},
281
293
{
282
294
"name" : "case_link" ,
@@ -286,6 +298,14 @@ def _readfile(name):
286
298
"name" : "site_name" ,
287
299
"description" : _ ("Name of the site" ),
288
300
},
301
+ {
302
+ "name" : "contact_page" ,
303
+ "description" : _ ("The link to an existing contactpage" ),
304
+ },
305
+ {
306
+ "name" : "contact_phonenumber" ,
307
+ "description" : _ ("The callable link to the configured phonenumber" ),
308
+ },
289
309
{
290
310
"name" : "profile_notifications" ,
291
311
"description" : _ (
@@ -312,14 +332,22 @@ def _readfile(name):
312
332
{
313
333
"name" : "identification" ,
314
334
"description" : _ ("The identification of the case" ),
335
+ "example" : "ZAAK-1234" ,
315
336
},
316
337
{
317
338
"name" : "type_description" ,
318
339
"description" : _ ("The description of the type of the case" ),
340
+ "example" : _ ("Casetype placeholder" ),
341
+ },
342
+ {
343
+ "name" : "status_description" ,
344
+ "description" : _ ("The description of the status of the case" ),
345
+ "example" : _ ("status placeholder" ),
319
346
},
320
347
{
321
348
"name" : "status_description" ,
322
349
"description" : _ ("The description of the status of the case" ),
350
+ "example" : _ ("status placeholder" ),
323
351
},
324
352
{
325
353
"name" : "case_link" ,
@@ -328,11 +356,20 @@ def _readfile(name):
328
356
{
329
357
"name" : "end_date" ,
330
358
"description" : _ ("The planned final date of the case" ),
359
+ "example" : date (2024 , 5 , 1 ),
331
360
},
332
361
{
333
362
"name" : "site_name" ,
334
363
"description" : _ ("Name of the site" ),
335
364
},
365
+ {
366
+ "name" : "contact_page" ,
367
+ "description" : _ ("The link to an existing contactpage" ),
368
+ },
369
+ {
370
+ "name" : "contact_phonenumber" ,
371
+ "description" : _ ("The callable link to the configured phonenumber" ),
372
+ },
336
373
{
337
374
"name" : "profile_notifications" ,
338
375
"description" : _ (
0 commit comments